Packages

A Phoenix test harness with one unified API across static pages, LiveView, and browser-based testing.

Current section

Files

Jump to
fluffy lib fluffy.ex
Raw

lib/fluffy.ex

defmodule Fluffy do
@moduledoc """
Documentation for `Fluffy`.
"""
@doc """
Hello world.
## Examples
iex> Fluffy.hello()
:world
"""
def hello do
:world
end
end