PPObjectTest.st
changeset 34 66d3e143a694
parent 4 90de244a7fa2
child 190 8fb7bd90b59f
--- a/PPObjectTest.st	Sat May 05 00:04:32 2012 +0200
+++ b/PPObjectTest.st	Sat May 05 00:04:44 2012 +0200
@@ -38,7 +38,7 @@
 
 testFibonacci
 	"This parser accepts fibonacci sequences with arbitrary start pairs."
-
+	
 	| parser |
 	parser := ((self integer , self integer) end ==> [ :pair | pair first + pair last ])
 		/ (self integer , (self integer , self integer) and >=> [ :stream :continuation |
@@ -56,7 +56,7 @@
 	self assert: parser fail: #().
 	self assert: parser fail: #(1).
 	self assert: parser fail: #(1 2 3 4) end: 2
-
+	
 ! !
 
 !PPObjectTest methodsFor:'testing-operators'!
@@ -75,11 +75,19 @@
 	self assert: parser fail: #(123 456).
 	self assert: parser fail: #('abc' 'def').
 	self assert: parser fail: #('abc' 123)
-
+	
 ! !
 
 !PPObjectTest class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPObjectTest.st,v 1.3 2012-05-04 22:04:44 vrany Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPObjectTest.st,v 1.3 2012-05-04 22:04:44 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPObjectTest.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPObjectTest.st 4 2010-12-18 17:02:23Z kursjan §'
 ! !