bundle-new/spec/bundler/psyched_yaml_spec.rb

9 lines
215 B
Ruby
Raw Permalink Normal View History

2019-10-06 15:45:34 +00:00
require 'spec_helper'
require 'bundler/psyched_yaml'
describe Bundler::YamlSyntaxError do
it "is raised on YAML parse errors" do
expect{ YAML.parse "{foo" }.to raise_error(Bundler::YamlSyntaxError)
end
end