From ca2d402944dd6386dd9d24e535160f53a526bc6b Mon Sep 17 00:00:00 2001 From: Rick Winfrey Date: Tue, 6 Jun 2017 17:04:01 -0700 Subject: [PATCH] Assert statement test fixture --- test/fixtures/python/assert-statement.A.py | 3 +++ test/fixtures/python/assert-statement.B.py | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 test/fixtures/python/assert-statement.A.py create mode 100644 test/fixtures/python/assert-statement.B.py diff --git a/test/fixtures/python/assert-statement.A.py b/test/fixtures/python/assert-statement.A.py new file mode 100644 index 000000000..f3c796649 --- /dev/null +++ b/test/fixtures/python/assert-statement.A.py @@ -0,0 +1,3 @@ +assert a +assert b, c + diff --git a/test/fixtures/python/assert-statement.B.py b/test/fixtures/python/assert-statement.B.py new file mode 100644 index 000000000..af551f8ed --- /dev/null +++ b/test/fixtures/python/assert-statement.B.py @@ -0,0 +1,3 @@ +assert c, a +assert b +