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