From b935b0ccf8503de8c087d748ebf298458128631f Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Fri, 6 Dec 2019 15:42:40 +0000 Subject: test: split value_py.test into py2/py3 versions. --- test/baseline/feat-value_py3.test | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/baseline/feat-value_py3.test (limited to 'test/baseline/feat-value_py3.test') diff --git a/test/baseline/feat-value_py3.test b/test/baseline/feat-value_py3.test new file mode 100644 index 00000000..be7612e1 --- /dev/null +++ b/test/baseline/feat-value_py3.test @@ -0,0 +1,24 @@ +python + from __future__ import print_function + def print_type(val): + print(type(val), val) + +eval print_type(true) +eval print_type([2010/08/10]) +eval print_type(10) +eval print_type($10.00) +eval print_type($10.00 + CAD 30) +eval print_type("Hello!") +eval print_type(/Hello!/) +;eval print_type((1, 2, 3)) + +test reg + True + 2010-08-10 + 10 + $10.00 + $10.00 +CAD 30 + Hello! + Hello! +end test -- cgit v1.2.3