Skip to content

Instantly share code, notes, and snippets.

@zkessin
Created July 19, 2017 08:28
Show Gist options
  • Save zkessin/b74418824dce46fe86b211f11621c12e to your computer and use it in GitHub Desktop.
Save zkessin/b74418824dce46fe86b211f11621c12e to your computer and use it in GitHub Desktop.
cleanup() ->
[barrel:create_database(#{<<"database_id">> => uuid:get_v4()})
|| A <- lists:seq(1,100)],
Dbs = barrel:database_names(),
[begin
ok = barrel:delete_database(D)
end|| D<- Dbs],
[] = barrel:database_names(),
ok.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment