Skip to content

Instantly share code, notes, and snippets.

@elbrujohalcon
Created October 7, 2017 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbrujohalcon/71403ee79d701f2e26fc63ed6228bc4a to your computer and use it in GitHub Desktop.
Save elbrujohalcon/71403ee79d701f2e26fc63ed6228bc4a to your computer and use it in GitHub Desktop.
Examples for my blog
-module(kvs_SUITE).
-export([basic_test/1]).
-export([all/0]).
all() -> [basic_test].
basic_test(_) ->
{ok, _} = kvs:start(),
notfound = kvs:retrieve(x),
ok = kvs:store(x, found),
found = kvs:retrieve(x),
ok.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment