1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/yaml/load_spec.rb
2021-06-02 15:54:38 +02:00

10 lines
233 B
Ruby

require_relative '../../spec_helper'
require_relative 'shared/load'
describe "YAML.load" do
it_behaves_like :yaml_load_safe, :load
guard -> { Psych::VERSION < "4.0.0" } do
it_behaves_like :yaml_load_unsafe, :load
end
end