summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNick Lewis <nick@puppetlabs.com>2011-01-06 15:56:31 -0800
committerNick Lewis <nick@puppetlabs.com>2011-01-06 15:56:31 -0800
commitf663182c28c9d4533ad4c2f897e5fbbf78b16d8e (patch)
tree28da3fd7c329de073e71b5b1ba1be01ec4e54b6f /test
parentc7764723578ae64240db7bd2a64f8e6e9fa708ab (diff)
parentb16e10dba6606b808ef195f4b57f2e8c66cf65ab (diff)
downloadpuppet-f663182c28c9d4533ad4c2f897e5fbbf78b16d8e.tar.gz
puppet-f663182c28c9d4533ad4c2f897e5fbbf78b16d8e.tar.xz
puppet-f663182c28c9d4533ad4c2f897e5fbbf78b16d8e.zip
Merge branch 'intermediate_merge_branch' into next
Diffstat (limited to 'test')
-rw-r--r--test/lib/puppettest/fileparsing.rb2
-rw-r--r--test/lib/puppettest/reporttesting.rb2
-rwxr-xr-xtest/other/report.rb2
3 files changed, 4 insertions, 2 deletions
diff --git a/test/lib/puppettest/fileparsing.rb b/test/lib/puppettest/fileparsing.rb
index 914c4bcb3..bd4f9e152 100644
--- a/test/lib/puppettest/fileparsing.rb
+++ b/test/lib/puppettest/fileparsing.rb
@@ -1,3 +1,5 @@
+require 'test/unit'
+
module PuppetTest::FileParsing
# Run an isomorphism test on our parsing process.
def fakedataparse(*files)
diff --git a/test/lib/puppettest/reporttesting.rb b/test/lib/puppettest/reporttesting.rb
index 448a6a9d8..54a2f6799 100644
--- a/test/lib/puppettest/reporttesting.rb
+++ b/test/lib/puppettest/reporttesting.rb
@@ -1,7 +1,7 @@
module PuppetTest::Reporttesting
def fakereport
# Create a bunch of log messages in an array.
- report = Puppet::Transaction::Report.new
+ report = Puppet::Transaction::Report.new("apply")
3.times { |i|
# We have to use warning so that the logs always happen
diff --git a/test/other/report.rb b/test/other/report.rb
index ce7d31e3b..fb206470a 100755
--- a/test/other/report.rb
+++ b/test/other/report.rb
@@ -68,7 +68,7 @@ class TestReports < Test::Unit::TestCase
def test_store_report
# Create a bunch of log messages in an array.
- report = Puppet::Transaction::Report.new
+ report = Puppet::Transaction::Report.new("apply")
# We have to reuse reporting here because of something going on in the
# server/report.rb file