Skip to content

Commit

Permalink
chore: add case
Browse files Browse the repository at this point in the history
  • Loading branch information
ivixvi committed Jan 4, 2025
1 parent 1eaca4c commit 395d8f9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/main.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@
:greeting))
(in-package :greeting/tests)

(rove:deftest test-hello
(rove:deftest test-hello1
(testing "hello common lisp"
(ok (string= (greeting:hello "common lisp") "Hello common lisp!"))))
(ok (string= (greeting:hello "common lisp") "Hello common lisp!")))
)

(rove:deftest test-hello2
(testing "ng case"
(ng (string= (greeting:hello "common lisp") "Hello world!")))
)


(defun run-test ()
(unless
Expand Down

0 comments on commit 395d8f9

Please sign in to comment.