From bda74bcd8e569d8be26bd1b958e38c0a15f5177c Mon Sep 17 00:00:00 2001 From: luke Date: Tue, 23 Jan 2007 15:32:19 +0000 Subject: Fixing #415. Configuration parsing now removes trailing whitespace. git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2082 980ebf18-57e1-0310-9a29-db15c13687c0 --- test/other/config.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test') 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$ -- cgit