mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
233 B
Ruby
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
|