blob: 18f31580adc255ebdb53d15416dfcafdfa270115 (
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("").should.empty?
end
it "returns false if the text is not empty" do
REXML::Text.new("some_text").should_not.empty?
end
end
end
|