diff -r e1b11f74e142 -r 90de244a7fa2 PPArithmeticParserTest.st --- a/PPArithmeticParserTest.st Mon Sep 12 19:48:53 2011 +0200 +++ b/PPArithmeticParserTest.st Fri Jan 13 12:22:50 2012 +0100 @@ -1,4 +1,4 @@ -"{ Package: 'squeak:petitparser' }" +"{ Package: 'stx:goodies/petitparser' }" PPCompositeParserTest subclass:#PPArithmeticParserTest instanceVariableNames:'' @@ -32,7 +32,7 @@ testBrackets self assert: '(1)' is: 1. self assert: '(1 + 2)' is: 3. - + self assert: '((1))' is: 1. self assert: '((1 + 2))' is: 3. @@ -78,7 +78,7 @@ self assert: '100 / 2 / 2' is: 25. self assert: '100 / 2 / 2 / 5' is: 5. self assert: '100 / 2 / 2 / 5 / 5' is: 1 - + ! testMul @@ -124,5 +124,5 @@ !PPArithmeticParserTest class methodsFor:'documentation'! version_SVN - ^ '$Id: PPArithmeticParserTest.st,v 1.1 2011-08-18 18:56:17 cg Exp $' + ^ '$Id: PPArithmeticParserTest.st,v 1.2 2012-01-13 11:22:50 cg Exp $' ! !