summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/texts_spec.rb
blob: 7f610ba31b758a6dd9a7cf6a257032c2fb86836d (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 ''...'2.8' 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