summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/other/config.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/other/config.rb b/test/other/config.rb
index 3eb6b77a6..285331c72 100755
--- a/test/other/config.rb
+++ b/test/other/config.rb
@@ -916,6 +916,18 @@ inttest = 27
# assert(! yay.find { |o| o.class.name == :group and o.name == "root" },
# "Found root group")
end
+
+ # #415
+ def test_remove_trailing_spaces
+ config = mkconfig()
+ config.setdefaults(:yay, :rah => ["testing", "a desc"])
+
+ file = tempfile()
+ File.open(file, "w") { |f| f.puts "rah = something " }
+
+ assert_nothing_raised { config.parse(file) }
+ assert_equal("something", config[:rah], "did not remove trailing whitespace in parsing")
+ end
end
# $Id$