1
0
forked from Mirror/wren

Kill duplicate test.

Fix #438.
This commit is contained in:
Bob Nystrom
2017-04-08 12:53:33 -07:00
parent 7aa3fc1ce7
commit d390e16a99

View File

@ -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