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

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

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

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