summaryrefslogtreecommitdiff
path: root/spec/ruby/library/yaml/parse_file_spec.rb
blob: 8c59a2d7ef8b4ad2b3e4dfa4b15883d40fc77b96 (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require_relative 'fixtures/common'

describe "YAML#parse_file" do
  it "returns a YAML::Syck::Map object after parsing a YAML file" do
    YAML.parse_file($test_parse_file).should be_kind_of(Psych::Nodes::Document)
  end
end