Sha256: a64549e239020b9b0b202d1d36b8b2f19d9cc1161cfcd51c20be3cc9ceb57c98
Contents?: true
Size: 490 Bytes
Versions: 31
Compression:
Stored size: 490 Bytes
Contents
;;; two-fer-test.el --- Tests for Two-fer (exercism) ;;; Commentary: ;; Common test data version: 1.2.0 4fc1acb ;;; Code: (load-file "two-fer.el") (ert-deftest no-name-given () (should (equal (two-fer) "One for you, one for me."))) (ert-deftest a-name-given () (should (equal (two-fer "Alice") "One for Alice, one for me."))) (ert-deftest another-name-given () (should (equal (two-fer "Bob") "One for Bob, one for me."))) (provide 'two-fer-test) ;;; two-fer-test.el ends here
Version data entries
31 entries across 31 versions & 1 rubygems