add links
This commit is contained in:
parent
3842798968
commit
e2b802f968
54 changed files with 4984 additions and 6 deletions
20
test/support/fixtures/links_fixtures.ex
Normal file
20
test/support/fixtures/links_fixtures.ex
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
defmodule Zoeyscomputer.LinksFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `Zoeyscomputer.Links` context.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Generate a link.
|
||||
"""
|
||||
def link_fixture(attrs \\ %{}) do
|
||||
{:ok, link} =
|
||||
attrs
|
||||
|> Enum.into(%{
|
||||
url: "some url"
|
||||
})
|
||||
|> Zoeyscomputer.Links.create_link()
|
||||
|
||||
link
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue