Add initial project
This commit is contained in:
31
test/support/fixtures/accounts_fixtures.ex
Normal file
31
test/support/fixtures/accounts_fixtures.ex
Normal file
@@ -0,0 +1,31 @@
|
||||
defmodule Wish.AccountsFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `Wish.Accounts` context.
|
||||
"""
|
||||
|
||||
def unique_user_email, do: "user#{System.unique_integer()}@example.com"
|
||||
def valid_user_password, do: "hello world!"
|
||||
|
||||
def valid_user_attributes(attrs \\ %{}) do
|
||||
Enum.into(attrs, %{
|
||||
email: unique_user_email(),
|
||||
password: valid_user_password()
|
||||
})
|
||||
end
|
||||
|
||||
def user_fixture(attrs \\ %{}) do
|
||||
{:ok, user} =
|
||||
attrs
|
||||
|> valid_user_attributes()
|
||||
|> Wish.Accounts.register_user()
|
||||
|
||||
user
|
||||
end
|
||||
|
||||
def extract_user_token(fun) do
|
||||
{:ok, captured_email} = fun.(&"[TOKEN]#{&1}[TOKEN]")
|
||||
[_, token | _] = String.split(captured_email.text_body, "[TOKEN]")
|
||||
token
|
||||
end
|
||||
end
|
||||
24
test/support/fixtures/wishlist_fixtures.ex
Normal file
24
test/support/fixtures/wishlist_fixtures.ex
Normal file
@@ -0,0 +1,24 @@
|
||||
defmodule Wish.WishlistFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `Wish.Wishlist` context.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Generate a item.
|
||||
"""
|
||||
def item_fixture(attrs \\ %{}) do
|
||||
{:ok, item} =
|
||||
attrs
|
||||
|> Enum.into(%{
|
||||
description: "some description",
|
||||
desire: 42,
|
||||
received: true,
|
||||
title: "some title",
|
||||
url: "some url"
|
||||
})
|
||||
|> Wish.Wishlist.create_item()
|
||||
|
||||
item
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user