mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
30 lines
801 B
Ruby
30 lines
801 B
Ruby
require_relative '../../../spec_helper'
|
|
|
|
ruby_version_is ''...'3.0' do
|
|
require 'rexml/document'
|
|
|
|
describe "REXML::Element#inspect" do
|
|
|
|
before :each do
|
|
@name = REXML::Element.new "name"
|
|
end
|
|
|
|
it "returns the node as a string" do
|
|
@name.inspect.should == "<name/>"
|
|
end
|
|
|
|
it "inserts '...' if the node has children" do
|
|
e = REXML::Element.new "last_name"
|
|
@name << e
|
|
@name.inspect.should == "<name> ... </>"
|
|
# This might make more sense but differs from MRI's default behavior
|
|
# @name.inspect.should == "<name> ... </name>"
|
|
end
|
|
|
|
it "inserts the attributes in the string" do
|
|
@name.add_attribute "language"
|
|
@name.attributes["language"] = "english"
|
|
@name.inspect.should == "<name language='english'/>"
|
|
end
|
|
end
|
|
end
|