Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 19, 2021 17:53
Show Gist options
  • Save BrooklinJazz/3ca22704ffb110dfa83929ccbdea9480 to your computer and use it in GitHub Desktop.
Save BrooklinJazz/3ca22704ffb110dfa83929ccbdea9480 to your computer and use it in GitHub Desktop.
Elixir example for module, describe, and test tags.
defmodule Example do
use ExUnit.Case
@moduletag :module_tag_name
describe "example describle" do
@describetag :describe_tag_name
@tag :test_tag_name
test "example test" do
assert true
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment