From 7e971436c9967c5bfe95a418911db41f4e937696 Mon Sep 17 00:00:00 2001 From: luke Date: Mon, 30 Apr 2007 15:57:57 +0000 Subject: Allowing "-" in fileserver module names, #617 git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2434 980ebf18-57e1-0310-9a29-db15c13687c0 --- test/network/handler/fileserver.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/network/handler') diff --git a/test/network/handler/fileserver.rb b/test/network/handler/fileserver.rb index c4db60f71..4c5af8a9a 100755 --- a/test/network/handler/fileserver.rb +++ b/test/network/handler/fileserver.rb @@ -232,7 +232,7 @@ class TestFileServer < Test::Unit::TestCase # verify we can mount /, which is what local file servers will # normally do - def test_zmountroot + def test_mountroot server = nil assert_nothing_raised { server = Puppet::Network::Handler.fileserver.new( @@ -456,7 +456,7 @@ class TestFileServer < Test::Unit::TestCase # make some dirs for mounting Dir.mkdir(basedir) mounts = {} - %w{thing thus these those}.each { |dir| + %w{thing thus the-se those}.each { |dir| path = File.join(basedir, dir) Dir.mkdir(path) mounts[dir] = mktestfiles(path) @@ -479,8 +479,8 @@ class TestFileServer < Test::Unit::TestCase allow *.madstop.com, *.kanies.com deny *.sub.madstop.com -[these] - path #{basedir}/these +[the-se] + path #{basedir}/the-se [those] path #{basedir}/those -- cgit