summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/attribute/clone_spec.rb
blob: 9a4a4079e16bd8c5ed71d25bc19c19f6e123cbd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../../spec_helper'
require 'rexml/document'

describe "REXML::Attribute#clone" do
  it "returns a copy of this Attribute" do
    orig = REXML::Attribute.new("name", "value&&")
    orig.should == orig.clone
    orig.clone.to_s.should == orig.to_s
    orig.clone.to_string.should == orig.to_string
  end
end