close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/utils-tests.lisp@ 281

Last change on this file since 281 was 281, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 339 bytes
Line 
1(def-suite utils-suite :description "Utils Suite")
2(in-suite my-suite)
3
4(test utils-tests
5 "Makelist"
6 (is (= (+ 2 2)) "2 plus 2 wasn't equal to 4 (using #'= to test equality)")
7 (is (= 0 (+ -1 1)))
8 (signals
9 (error "Trying to add 4 to FOO didn't signal an error")
10 (+ 'foo 4))
11 (is (= 0 (+ 1 1)) "this should have failed"))
Note: See TracBrowser for help on using the repository browser.