summaryrefslogtreecommitdiffstats
path: root/test/parser
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-08-28 02:23:10 +0000
committerLuke Kanies <luke@madstop.com>2005-08-28 02:23:10 +0000
commitf2795359521709b5d4a64900ebed5e7b0be84c6b (patch)
tree59aba403256c85c6d0de6170422f2c2066329aa8 /test/parser
parent28be88cc6e13c1af193fe01d56a1a446a18e01bb (diff)
This should be the commit that brings us to Beta 1. All tests pass, although I get some (gracefully handled) failures in tc_metrics.rb, and there is now a config file for the fileserver module, including authorization specification for it. I have also reworked error handling in the xmlrpc client and server so errors should propagate more correctly.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@594 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/parser')
-rw-r--r--test/parser/tc_lexer.rb3
-rw-r--r--test/parser/tc_parser.rb2
2 files changed, 1 insertions, 4 deletions
diff --git a/test/parser/tc_lexer.rb b/test/parser/tc_lexer.rb
index b8fd3e23b..d0ed19324 100644
--- a/test/parser/tc_lexer.rb
+++ b/test/parser/tc_lexer.rb
@@ -1,7 +1,6 @@
if __FILE__ == $0
$:.unshift '../../lib'
- $:.unshift '../../../../library/trunk/lib/'
- $:.unshift '../../../../library/trunk/test/'
+ $:.unshift '..'
$puppetbase = "../.."
end
diff --git a/test/parser/tc_parser.rb b/test/parser/tc_parser.rb
index 8a05a5765..cb3cea0e9 100644
--- a/test/parser/tc_parser.rb
+++ b/test/parser/tc_parser.rb
@@ -71,7 +71,5 @@ class TestParser < Test::Unit::TestCase
assert_nothing_raised {
ret = parser.parse
}
- puts ret.class
- p ret
end
end