Sha256: d54da5e4b5b05643619e162c56022d84a985d348689cc34de2226780dc68bcb6
Contents?: true
Size: 464 Bytes
Versions: 84
Compression:
Stored size: 464 Bytes
Contents
% To run tests: % erl -make % erl -noshell -eval "eunit:test(hello_world, [verbose])" -s init stop % -module(hello_world_tests). -include_lib("eunit/include/eunit.hrl"). no_name_test() -> ?assertEqual("Hello, World!", hello_world:greet()). alice_test() -> ?assertEqual("Hello, Alice!", hello_world:greet("Alice")). bob_test() -> ?assertEqual("Hello, Bob!", hello_world:greet("Bob")). strange_test() -> ?assertEqual("Hello, !", hello_world:greet("")).
Version data entries
84 entries across 84 versions & 1 rubygems