diff --git a/test/fixtures/python/while-statement.A.py b/test/fixtures/python/while-statement.A.py new file mode 100644 index 000000000..dc57eab69 --- /dev/null +++ b/test/fixtures/python/while-statement.A.py @@ -0,0 +1,5 @@ +while true: + pass + break + continue + diff --git a/test/fixtures/python/while-statement.B.py b/test/fixtures/python/while-statement.B.py new file mode 100644 index 000000000..ba4ddef96 --- /dev/null +++ b/test/fixtures/python/while-statement.B.py @@ -0,0 +1,5 @@ +while false: + break + continue + pass +