remove more crud from test/ subdirectory
[sbp.git] / tests / ifthen.tc
diff --git a/tests/ifthen.tc b/tests/ifthen.tc
deleted file mode 100644 (file)
index 6d23a52..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-testcase {
-  input "if (foo) if (bar) baz else bop";
-  output "IfThen:{Identifier:{{f o o}} IfThenElse:{IfThen:{Identifier:{{b a r}} Identifier:{{b a z}}} Identifier:{{b o p}}}}";
-
-  s             = Expr
-
-  Expr          = IfThen::     "if" "(" Expr ")" Expr             /ws
-                | IfThenElse:: "if" "(" Expr ")" (x:: Expr "else" Expr /ws &~ Expr) /ws
-                | Identifier:: [a-z]++ 
-
-  ws            = [\n ]**
-
-}