summaryrefslogtreecommitdiff
path: root/spec/ruby/library/yaml/load_spec.rb
blob: 56700a85f908b2b532875528bad5abc3c261a7e4 (plain)
1
2
3
4
5
6
7
8
9
10
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