mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 07:14:56 -06:00
7 lines
169 B
Clojure
7 lines
169 B
Clojure
(ns hello-world-test
|
|
(:require [clojure.test :refer [deftest is]]
|
|
hello-world))
|
|
|
|
(deftest hello-world-test
|
|
(is (= "Hello, World!" (hello-world/hello))))
|