Packages
Brandon Pollack's basic elixir template for new projects.
Current section
Files
Jump to
Current section
Files
template/$PROJECT_NAME$/test/$PROJECT_NAME$_test.exs
defmodule <%= @project_name_camel_case %>Test do
use ExUnit.Case
doctest <%= @project_name_camel_case %>
test "greets the world" do
assert <%= @project_name_camel_case %>.hello() == :world
end
end