Initial commit
This commit is contained in:
21
test/support/fixtures/forums_fixtures.ex
Normal file
21
test/support/fixtures/forums_fixtures.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule SomethingErlang.ForumsFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `SomethingErlang.Forums` context.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Generate a thread.
|
||||
"""
|
||||
def thread_fixture(attrs \\ %{}) do
|
||||
{:ok, thread} =
|
||||
attrs
|
||||
|> Enum.into(%{
|
||||
thread_id: 42,
|
||||
title: "some title"
|
||||
})
|
||||
|> SomethingErlang.Forums.create_thread()
|
||||
|
||||
thread
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user