From a0c9ab08dccf65259474b5da97e4f5b092741779 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 1 Mar 2012 22:20:20 -0600 Subject: Added more baseline testing, for valexprs and Python --- test/baseline/feat-value_py.test | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/baseline/feat-value_py.test (limited to 'test/baseline/feat-value_py.test') diff --git a/test/baseline/feat-value_py.test b/test/baseline/feat-value_py.test new file mode 100644 index 00000000..5efe315d --- /dev/null +++ b/test/baseline/feat-value_py.test @@ -0,0 +1,23 @@ +python + 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