Packages

Vox static site project generator. Provides a `mix vox.new` task to bootstrap a new Elixir application with Vox dependencies and a basic template to generate.

Current section

Files

Jump to
vox_new templates test APP_test.exs
Raw

templates/test/APP_test.exs

defmodule <%= @project.module_name %>Test do
use ExUnit.Case
doctest <%= @project.module_name %>
test "greets the world" do
assert <%= @project.module_name %>.hello() == :world
end
end