aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/rexml/element/whitespace_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/rexml/element/whitespace_spec.rb')
-rw-r--r--spec/rubyspec/library/rexml/element/whitespace_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/rubyspec/library/rexml/element/whitespace_spec.rb b/spec/rubyspec/library/rexml/element/whitespace_spec.rb
new file mode 100644
index 0000000000..ea9ff42c03
--- /dev/null
+++ b/spec/rubyspec/library/rexml/element/whitespace_spec.rb
@@ -0,0 +1,23 @@
+require 'rexml/document'
+require File.expand_path('../../../../spec_helper', __FILE__)
+
+describe "REXML::Element#whitespace" do
+ it "returns true if whitespace is respected in the element" do
+ e = REXML::Element.new("root")
+ e.whitespace.should be_true
+
+ e = REXML::Element.new("root", nil, respect_whitespace: :all)
+ e.whitespace.should be_true
+
+ e = REXML::Element.new("root", nil, respect_whitespace: ["root"])
+ e.whitespace.should be_true
+ end
+
+ it "returns false if whitespace is ignored inside element" do
+ e = REXML::Element.new("root", nil, compress_whitespace: :all)
+ e.whitespace.should be_false
+
+ e = REXML::Element.new("root", nil, compress_whitespace: ["root"])
+ e.whitespace.should be_false
+ end
+end