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/unsafe_load_spec.rb

10 lines
256 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require_relative 'shared/load'
2021-06-02 09:54:38 -04:00
guard -> { Psych::VERSION >= "4.0.0" } do
describe "YAML.unsafe_load" do
2021-06-02 09:54:38 -04:00
it_behaves_like :yaml_load_safe, :unsafe_load
it_behaves_like :yaml_load_unsafe, :unsafe_load
end
end