summaryrefslogtreecommitdiff
path: root/spec/ruby/library/yaml/tagurize_spec.rb
blob: f6025cbea3421c70b21939c7a5bc5c056386e637 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/common', __FILE__)

ruby_version_is ''...'2.5' do
  describe "YAML.tagurize" do
    it "converts a type_id to a taguri" do
      YAML.tagurize('wtf').should == "tag:yaml.org,2002:wtf"
      YAML.tagurize(1).should == 1
    end
  end
end