diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-03-19 16:42:41 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-03-19 16:42:41 +0000 |
| commit | e2c5dbb2cc022034a54b1207310eff43be93ce85 (patch) | |
| tree | 53c71082cf67f6847f8611fcd5f09fb11c9a8d37 /test/network/handler/runner.rb | |
| parent | 92bad78a6aebb9abeac8e734b5ce56b88e21cdda (diff) | |
| download | puppet-e2c5dbb2cc022034a54b1207310eff43be93ce85.tar.gz puppet-e2c5dbb2cc022034a54b1207310eff43be93ce85.tar.xz puppet-e2c5dbb2cc022034a54b1207310eff43be93ce85.zip | |
Another round of bug-fixes, prompted by test logs from David Schmitt
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2316 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/network/handler/runner.rb')
| -rwxr-xr-x | test/network/handler/runner.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/network/handler/runner.rb b/test/network/handler/runner.rb index 5c3acde2b..b6df9bab9 100755 --- a/test/network/handler/runner.rb +++ b/test/network/handler/runner.rb @@ -36,10 +36,13 @@ class TestHandlerRunner < Test::Unit::TestCase # Okay, make our manifest file = tempfile() created = tempfile() + # We specify the schedule here, because I was having problems with + # using default schedules. File.open(file, "w") do |f| f.puts %{ class yayness { - file { "#{created}": ensure => file, schedule => weekly } + schedule { "yayness": period => weekly } + file { "#{created}": ensure => file, schedule => yayness } } include yayness |
