From 4c8c87ea51a3d892c6947870592c72d41b1c5f9e Mon Sep 17 00:00:00 2001 From: Rick Winfrey Date: Tue, 6 Jun 2017 17:08:03 -0700 Subject: [PATCH] While statement test fixture --- test/fixtures/python/while-statement.A.py | 5 +++++ test/fixtures/python/while-statement.B.py | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 test/fixtures/python/while-statement.A.py create mode 100644 test/fixtures/python/while-statement.B.py 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 +