Work in progress

This commit is contained in:
Maas-Maarten Zeeman
2011-10-19 00:26:06 +02:00
parent 318ad3ab3a
commit 1125eb1ad7
3 changed files with 226 additions and 43 deletions

View File

@@ -6,5 +6,13 @@
-include_lib("eunit/include/eunit.hrl").
open_test() ->
{ok, C} = esqlite:open("test.db").
open_single_database_test() ->
{ok, _C1} = esqlite:open("test.db"),
ok.
open_multiple_databases_test() ->
{ok, _C1} = esqlite:open("test.db"),
{ok, _C2} = esqlite:open("test.db"),
ok.