From 68bfeac134eba04a73f022fa0c98143f64eb8988 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sun, 22 Apr 2012 17:19:04 +0200 Subject: [PATCH] Jasmine: Drop the idempotence test The code this test covered is long gone. --- test/compiler-test.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/compiler-test.js b/test/compiler-test.js index 3c1db1b..d865c8e 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -13,13 +13,6 @@ function testWithVaryingTrackLineAndColumn(name, callback) { ); } -testWithVaryingTrackLineAndColumn("indempotence", function(options) { - var parser1 = PEG.buildParser('start = "abcd"', options); - var parser2 = PEG.buildParser('start = "abcd"', options); - - strictEqual(parser1.toSource(), parser2.toSource()); -}); - testWithVaryingTrackLineAndColumn("error details", function(options) { var literalParser = PEG.buildParser('start = "abcd"', options); doesNotParseWithDetails(