summaryrefslogtreecommitdiffstats
path: root/spec/unit
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-05-06 12:00:23 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-05-15 09:58:26 +1000
commit4f3a67f21568394dd89a969bd373cbbd59784f7e (patch)
treea3d7c60a5be395c2cbc6fce430c29229897e7ad5 /spec/unit
parent2d580c257e6d8aa0821fd443e8b817027407212c (diff)
downloadpuppet-4f3a67f21568394dd89a969bd373cbbd59784f7e.tar.gz
puppet-4f3a67f21568394dd89a969bd373cbbd59784f7e.tar.xz
puppet-4f3a67f21568394dd89a969bd373cbbd59784f7e.zip
Fixing #2221 - pluginsignore should work again
We weren't splitting on whitespace, which is necessary since the settings don't support arrays but files expect them. Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/unit')
-rwxr-xr-xspec/unit/configurer/downloader.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/unit/configurer/downloader.rb b/spec/unit/configurer/downloader.rb
index bc23574f2..80de8db48 100755
--- a/spec/unit/configurer/downloader.rb
+++ b/spec/unit/configurer/downloader.rb
@@ -82,10 +82,16 @@ describe Puppet::Configurer::Downloader do
end
it "should support providing an 'ignore' parameter" do
- Puppet::Type.type(:file).expects(:new).with { |opts| opts[:ignore] == ".svn" }
+ Puppet::Type.type(:file).expects(:new).with { |opts| opts[:ignore] == [".svn"] }
@dler = Puppet::Configurer::Downloader.new("foo", "path", "source", ".svn")
@dler.file
end
+
+ it "should split the 'ignore' parameter on whitespace" do
+ Puppet::Type.type(:file).expects(:new).with { |opts| opts[:ignore] == %w{.svn CVS} }
+ @dler = Puppet::Configurer::Downloader.new("foo", "path", "source", ".svn CVS")
+ @dler.file
+ end
end
describe "when creating the catalog to do the downloading" do