From d390e16a99a53dc6b7ce8527f4042df69821b923 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sat, 8 Apr 2017 12:53:33 -0700 Subject: [PATCH] Kill duplicate test. Fix #438. --- test/core/range/floating_point.wren | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 test/core/range/floating_point.wren diff --git a/test/core/range/floating_point.wren b/test/core/range/floating_point.wren deleted file mode 100644 index 78f7ff13..00000000 --- a/test/core/range/floating_point.wren +++ /dev/null @@ -1,25 +0,0 @@ -// Ordered range. -System.print((2..5).from) // expect: 2 -System.print((3..3).from) // expect: 3 -System.print((0..3).from) // expect: 0 -System.print((-5..3).from) // expect: -5 -System.print((-5..-2).from) // expect: -5 - -// Backwards range. -System.print((5..2).from) // expect: 5 -System.print((3..0).from) // expect: 3 -System.print((3..-5).from) // expect: 3 -System.print((-2..-5).from) // expect: -2 - -// Exclusive ordered range. -System.print((2...5).from) // expect: 2 -System.print((3...3).from) // expect: 3 -System.print((0...3).from) // expect: 0 -System.print((-5...3).from) // expect: -5 -System.print((-5...-2).from) // expect: -5 - -// Exclusive backwards range. -System.print((5...2).from) // expect: 5 -System.print((3...0).from) // expect: 3 -System.print((3...-5).from) // expect: 3 -System.print((-2...-5).from) // expect: -2