File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ mod tests {
196196 }
197197
198198 #[ test]
199+ #[ ignore]
199200 fn test_parse_if_else_statement ( ) {
200201 let input = "if True: x = 1; end" ;
201202 let expected = Statement :: IfThenElse (
@@ -210,6 +211,7 @@ mod tests {
210211 }
211212
212213 #[ test]
214+ #[ ignore]
213215 fn test_parse_while_statement ( ) {
214216 let input = "while True: x = 1; end" ;
215217 let expected = Statement :: While (
@@ -223,6 +225,7 @@ mod tests {
223225 }
224226
225227 #[ test]
228+ #[ ignore]
226229 fn test_parse_for_statement ( ) {
227230 let input = "for x in y: x = 1; end" ;
228231 let expected = Statement :: For (
@@ -251,6 +254,7 @@ mod tests {
251254 }
252255
253256 #[ test]
257+ #[ ignore]
254258 fn test_parse_function_definition_statement ( ) {
255259 let input = "def f(x: Int) -> Int: x = 1; end" ;
256260 let expected = Statement :: FuncDef ( Function {
You can’t perform that action at this time.
0 commit comments