Current section

Files

Jump to
exshome test support fixtures.ex
Raw

test/support/fixtures.ex

defmodule ExshomeTest.Fixtures do
@moduledoc """
This module helps to setup tests.
"""
@spec unique_integer() :: integer()
def unique_integer do
System.unique_integer([:positive, :monotonic])
end
end