summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/cdata/clone_spec.rb
blob: abe1a0b062399cc1c6dd69bc4677952b10211a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../../spec_helper'

ruby_version_is ''...'3.0' do
  require 'rexml/document'

  describe "REXML::CData#clone" do
    it "makes a copy of itself" do
      c = REXML::CData.new("some text")
      c.clone.to_s.should == c.to_s
      c.clone.should == c
    end
  end
end