From f4d418a6ef9e87794db7a1ba985eeb07b105c314 Mon Sep 17 00:00:00 2001 From: xi Date: Mon, 22 May 2006 19:50:32 +0000 Subject: [PATCH] Add a test case belonging to the previous commit. git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@174 18f92427-320e-0410-9341-c67f048884a3 --- tests/data/more-floats.code | 1 + tests/data/more-floats.data | 1 + 2 files changed, 2 insertions(+) create mode 100644 tests/data/more-floats.code create mode 100644 tests/data/more-floats.data diff --git a/tests/data/more-floats.code b/tests/data/more-floats.code new file mode 100644 index 0000000..eddae08 --- /dev/null +++ b/tests/data/more-floats.code @@ -0,0 +1 @@ +[0.0, +1.0, -1.0, +1e300000, -1e300000, 1e300000/1e300000, -1e300000/1e300000] diff --git a/tests/data/more-floats.data b/tests/data/more-floats.data new file mode 100644 index 0000000..399eb17 --- /dev/null +++ b/tests/data/more-floats.data @@ -0,0 +1 @@ +[0.0, +1.0, -1.0, +.inf, -.inf, .nan, .nan] -- 2.11.4.GIT