Packages
periscope_tester
0.1.0
Example repo for embedding a Phoenix app for testing in a Hex package
Current section
Files
Jump to
Current section
Files
lib/periscope_tester.ex
defmodule PeriscopeTester do
@moduledoc """
Documentation for `PeriscopeTester`.
"""
@doc """
Hello world.
## Examples
iex> PeriscopeTester.hello()
:world
"""
def hello do
:world
end
end