blob: e8e322f9a52b554ebda5bda0f9a4ec970596723c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require_relative '../../../spec_helper'
ruby_version_is ''...'2.8' 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
|