mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Ignore rexml examples on ruby/spec
This commit is contained in:
parent
83240f315a
commit
e61cab3a36
Notes:
git
2020-01-12 12:29:06 +09:00
104 changed files with 1863 additions and 1551 deletions
|
@ -1,27 +1,30 @@
|
|||
require 'rexml/document'
|
||||
require_relative '../../../spec_helper'
|
||||
|
||||
describe "REXML::Element#inspect" do
|
||||
ruby_version_is ''...'2.8' do
|
||||
require 'rexml/document'
|
||||
|
||||
before :each do
|
||||
@name = REXML::Element.new "name"
|
||||
end
|
||||
describe "REXML::Element#inspect" do
|
||||
|
||||
it "returns the node as a string" do
|
||||
@name.inspect.should == "<name/>"
|
||||
end
|
||||
before :each do
|
||||
@name = REXML::Element.new "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 "returns the node as a string" do
|
||||
@name.inspect.should == "<name/>"
|
||||
end
|
||||
|
||||
it "inserts the attributes in the string" do
|
||||
@name.add_attribute "language"
|
||||
@name.attributes["language"] = "english"
|
||||
@name.inspect.should == "<name language='english'/>"
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue