1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/rexml/text/empty_spec.rb

16 lines
351 B
Ruby
Raw Normal View History

require_relative '../../../spec_helper'
2020-01-11 18:14:26 -05:00
ruby_version_is ''...'2.8' do
require 'rexml/document'
describe "REXML::Text#empty?" do
it "returns true if the text is empty" do
2020-05-03 06:28:29 -04:00
REXML::Text.new("").should.empty?
2020-01-11 18:14:26 -05:00
end
2020-01-11 18:14:26 -05:00
it "returns false if the text is not empty" do
2020-05-03 06:28:29 -04:00
REXML::Text.new("some_text").should_not.empty?
2020-01-11 18:14:26 -05:00
end
end
end