Skip to content

Instantly share code, notes, and snippets.

@alco
Last active August 29, 2015 14:04
Show Gist options
  • Save alco/53b2d2fd66c9e0b60347 to your computer and use it in GitHub Desktop.
Save alco/53b2d2fd66c9e0b60347 to your computer and use it in GitHub Desktop.
defmodule TasteTest do
use ExUnit.Case
setup context do
{:ok, Map.put(context, :test, String.to_atom("#{context[:test]} (#{context[:group]})"))}
end
test "the truth" do
assert 1 + 1 == 2
end
@tag group: :build
test "func 1" do
end
@tag group: :build
test "func 2" do
end
@tag group: :build
test "func 3" do
assert true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment