Created
March 15, 2016 02:27
-
-
Save renatorozas/967fb9e96edeb4cceaa2 to your computer and use it in GitHub Desktop.
Getting started with EUnit (Part 2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(kv_db_tests). | |
-include_lib("eunit/include/eunit.hrl"). | |
new_test_() -> | |
fun () -> ?assertEqual([], kv_db:new()) end. | |
new_test() -> | |
?assertEqual([], kv_db:new()). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment