2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
require 'rexml/document'
|
|
|
|
|
|
|
|
describe "REXML::Text#inspect" do
|
|
|
|
it "inspects the string attribute as a string" do
|
|
|
|
REXML::Text.new("a text").inspect.should == "a text".inspect
|
|
|
|
end
|
|
|
|
end
|