summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/texts_spec.rb
blob: 2d374d5e66a33e5c34d387fa93c8418b32d110a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative '../../../spec_helper'

ruby_version_is ''...'3.0' do
  require 'rexml/document'

  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
end