summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/text/empty_spec.rb
blob: 392b536a4cf24cda5ae621448e745865a10cb068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../../spec_helper'

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

  describe "REXML::Text#empty?" do
    it "returns true if the text is empty" do
      REXML::Text.new("").empty?.should == true
    end

    it "returns false if the text is not empty" do
      REXML::Text.new("some_text").empty?.should == false
    end
  end
end