compiler/tests/PPCompiledSmalltalkGrammarTests.st
changeset 438 20598d7ce9fa
parent 422 116d2b2af905
--- a/compiler/tests/PPCompiledSmalltalkGrammarTests.st	Tue Apr 21 17:20:11 2015 +0100
+++ b/compiler/tests/PPCompiledSmalltalkGrammarTests.st	Thu Apr 30 23:43:14 2015 +0200
@@ -730,6 +730,18 @@
 		rule: #expression
 !
 
+testIdentifierToken
+	self 
+		parse: 'foo'
+		rule: #identifierToken
+!
+
+testIdentifierToken2
+	self
+		parse: '  foo'
+		rule: #identifierToken
+!
+
 testKeywordExpression1
 	self 
 		parse: '1 to: 2'