PPArithmeticParserTest.st
changeset 48 5a795e7690d4
parent 4 90de244a7fa2
child 185 e094104de2e5
--- a/PPArithmeticParserTest.st	Sat May 05 00:08:35 2012 +0200
+++ b/PPArithmeticParserTest.st	Sat May 05 00:08:46 2012 +0200
@@ -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
@@ -123,6 +123,14 @@
 
 !PPArithmeticParserTest class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPArithmeticParserTest.st,v 1.3 2012-05-04 22:08:46 vrany Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPArithmeticParserTest.st,v 1.3 2012-05-04 22:08:46 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPArithmeticParserTest.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPArithmeticParserTest.st 4 2010-12-18 17:02:23Z kursjan §'
 ! !