diff options
Diffstat (limited to 'test/other/tc_function.rb')
-rw-r--r-- | test/other/tc_function.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/other/tc_function.rb b/test/other/tc_function.rb index 5fa3698cc..e35abddd6 100644 --- a/test/other/tc_function.rb +++ b/test/other/tc_function.rb @@ -1,11 +1,11 @@ if __FILE__ == $0 $:.unshift '..' $:.unshift '../../lib' - $blinkbase = "../../../../language/trunk" + $puppetbase = "../../../../language/trunk" end -require 'blink/function' -require 'blink/fact' +require 'puppet/function' +require 'puppet/fact' require 'test/unit' # $Id$ @@ -17,11 +17,11 @@ class TestFunctions < Test::Unit::TestCase vars.each { |var| value = nil assert_nothing_raised() { - value = Blink::Function["fact"].call(var) + value = Puppet::Function["fact"].call(var) } assert_equal( - Blink::Fact[var], + Puppet::Fact[var], value ) } |