exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

hello-world-test.el (304B)


      1 ;;; hello-world-test.el --- Tests for Hello World (exercism)
      2 
      3 ;;; Commentary:
      4 ;; Common test data version: 1.1.0 be3ae66
      5 
      6 ;;; Code:
      7 
      8 (load-file "hello-world.el")
      9 
     10 (ert-deftest hello-world-test ()
     11   (should (equal (hello) "Hello, World!")))
     12 
     13 (provide 'hello-world-test)
     14 
     15 ;;; hello-world-test.el ends here