diff options
| author | Luke Kanies <luke@madstop.com> | 2007-08-25 15:54:06 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-08-25 15:54:06 -0500 |
| commit | 37f0eed9657810c1b9e1d6383e6d6ebb027aff2f (patch) | |
| tree | 4a99038864044be35e38cd52bba495883cc36344 /test/lib | |
| parent | deb0107ed945c25776d10f9e9b9d721b69ec3478 (diff) | |
| download | puppet-37f0eed9657810c1b9e1d6383e6d6ebb027aff2f.tar.gz puppet-37f0eed9657810c1b9e1d6383e6d6ebb027aff2f.tar.xz puppet-37f0eed9657810c1b9e1d6383e6d6ebb027aff2f.zip | |
Renaming the "configuration" object to "compile", because it is only a transitional object and I want the real "configuration" object to be the thing that I pass from the server to the client; it will be a subclass of GRATR::Digraph.
Diffstat (limited to 'test/lib')
| -rw-r--r-- | test/lib/puppettest/parsertesting.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/puppettest/parsertesting.rb b/test/lib/puppettest/parsertesting.rb index 326c25756..34aeca00a 100644 --- a/test/lib/puppettest/parsertesting.rb +++ b/test/lib/puppettest/parsertesting.rb @@ -5,7 +5,7 @@ module PuppetTest::ParserTesting include PuppetTest AST = Puppet::Parser::AST - Config = Puppet::Parser::Configuration + Compile = Puppet::Parser::Compile # A fake class that we can use for testing evaluation. class FakeAST @@ -45,7 +45,7 @@ module PuppetTest::ParserTesting require 'puppet/network/handler/node' parser ||= mkparser node = mknode - return Config.new(node, parser) + return Compile.new(node, parser) end def mknode(name = nil) |
