adding test case for check-expect

This commit is contained in:
Danny Yoo 2011-08-31 18:39:16 -04:00
parent 464abb58f1
commit f9b37470f8
4 changed files with 8 additions and 1 deletions

View File

@ -13,7 +13,7 @@
};
Path.prototype.toString = function () {
return String(this.path);
return "#<path:" + String(this.path) + ">";
};
//////////////////////////////////////////////////////////////////////

View File

@ -0,0 +1,6 @@
Running tests...
check-expect: actual value "hello huh" differs from "this should fail", the expected value
at: #<path:/gpfs/main/home/dyoo/work/whalesong/tests/more-tests/checking.rkt>, line 7, column 0
Ran 3 tests.
2 tests passed.
One test failed.

View File

@ -7,6 +7,7 @@
;; type replaced with .expected.
(test "more-tests/booleans.rkt")
(test "more-tests/checking.rkt")
(test "more-tests/string-tests.rkt")
(test "more-tests/chars.rkt")
(test "more-tests/numbers.rkt")