10 lines
201 B
Erlang
10 lines
201 B
Erlang
|
-module(hello_world_tests).
|
||
|
|
||
|
-define(TESTED_MODULE, (sut(hello_world))).
|
||
|
-define(TEST_VERSION, 2).
|
||
|
-include("exercism.hrl").
|
||
|
|
||
|
|
||
|
say_hi_test() ->
|
||
|
?assertEqual("Hello, World!", ?TESTED_MODULE:hello()).
|