blob: 7975833c89a2f4a4d21fc98c21573cf2f1035eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'rexml/document'
require_relative '../../../spec_helper'
describe "REXML::Element#texts" do
it "returns an array of the Text children" do
e = REXML::Element.new("root")
e.add_text "First"
e.add_text "Second"
e.texts.should == ["FirstSecond"]
end
it "returns an empty array if it has no Text children" do
REXML::Element.new("root").texts.should == []
end
end
|