Skip to content

Instantly share code, notes, and snippets.

View renatorozas's full-sized avatar

Renato Rozas renatorozas

View GitHub Profile
@renatorozas
renatorozas / kv_db_tests.erl
Created March 15, 2016 03:32
Getting started with EUnit (Part 2)
-module(kv_db_tests).
-include_lib("eunit/include/eunit.hrl").
all_test_() ->
[?_assertEqual([], kv_db:new()),
put_one_test(),
put_same_key_test(),
put_new_key_test(),
get_non_existent_key_test(),