aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/rexml/element/texts_spec.rb
blob: de3a818866f31ee363152ff62e94daa06b63326d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rexml/document'
require File.expand_path('../../../../spec_helper', __FILE__)

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