mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
351 B
Ruby
15 lines
351 B
Ruby
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
|