Skip to content

Commit 3780aff

Browse files
committed
Add additional test and check it passes to 1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js
1 parent 0bfbb21 commit 3780aff

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,6 @@ assertEquals(isProperFraction(1, 2), true);
3636
assertEquals(isProperFraction(3, 1), false);
3737
assertEquals(isProperFraction(2, 2), false);
3838
assertEquals(isProperFraction(5, 0), false);
39+
assertEquals(isProperFraction(-1, 0), false);
3940
assertEquals(isProperFraction(-2, 4), true);
4041
assertEquals(isProperFraction(4, -2), false);

0 commit comments

Comments
 (0)