Last active
August 29, 2015 14:04
-
-
Save alco/53b2d2fd66c9e0b60347 to your computer and use it in GitHub Desktop.
This file contains 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
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