Sha256: 31ab830cc744057f71dcc38cfe78c7e0b727a6427a1de97df3ae176274274182
Contents?: true
Size: 388 Bytes
Versions: 365
Compression:
Stored size: 388 Bytes
Contents
;;; hello-world-test.el --- Tests for Hello World (exercism) ;;; Commentary: ;;; Code: (load-file "hello-world.el") (ert-deftest no-args () (should (equal (hello) "Hello, World!"))) (ert-deftest with-args () (should (equal (hello "Emacs") "Hello, Emacs!")) (should (equal (hello "Exercism") "Hello, Exercism!"))) (provide 'hello-world-test) ;;; hello-world-test.el ends here
Version data entries
365 entries across 365 versions & 1 rubygems