summaryrefslogtreecommitdiffstats
path: root/spec/unit/parser/ast
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-02-12 22:47:40 -0600
committerLuke Kanies <luke@madstop.com>2008-02-12 22:47:40 -0600
commitcb5def4dc3310e1e697b3b27e7163224857c4c61 (patch)
treeec408a5c96ed5d8dfdb09c927bd89580d8e0b762 /spec/unit/parser/ast
parenteb740336d418273eea726f653280dae7553da605 (diff)
downloadpuppet-cb5def4dc3310e1e697b3b27e7163224857c4c61.tar.gz
puppet-cb5def4dc3310e1e697b3b27e7163224857c4c61.tar.xz
puppet-cb5def4dc3310e1e697b3b27e7163224857c4c61.zip
'rake' within the spec dir works now, anyway, which is
a good start. Autotest still doesn't work, though.
Diffstat (limited to 'spec/unit/parser/ast')
-rwxr-xr-xspec/unit/parser/ast/definition.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/parser/ast/definition.rb b/spec/unit/parser/ast/definition.rb
index f236e23b7..a58e4d00e 100755
--- a/spec/unit/parser/ast/definition.rb
+++ b/spec/unit/parser/ast/definition.rb
@@ -45,7 +45,7 @@ describe Puppet::Parser::AST::Definition, "when evaluating" do
#
# it "should evaluate the associated code with the new scope"
- def test_initialize
+ def old_test_initialize
parser = mkparser
# Create a new definition
@@ -67,7 +67,7 @@ describe Puppet::Parser::AST::Definition, "when evaluating" do
end
- def test_evaluate
+ def oldtest_evaluate
parser = mkparser
config = mkcompiler
config.send(:evaluate_main)
@@ -135,7 +135,7 @@ describe Puppet::Parser::AST::Definition, "when evaluating" do
end
# #539 - definitions should support both names and titles
- def test_names_and_titles
+ def oldtest_names_and_titles
parser = mkparser
scope = mkscope :parser => parser
@@ -186,7 +186,7 @@ describe Puppet::Parser::AST::Definition, "when evaluating" do
# Testing the root cause of #615. We should be using the fqname for the type, instead
# of just the short name.
- def test_fully_qualified_types
+ def oldtest_fully_qualified_types
parser = mkparser
klass = parser.newclass("one::two")