Add Translators/deepl_accounts
mix phx.gen.live Translators DeeplAccount deepl_accounts\ name:string description:text auth_key:string character_limit:integer\ character_count:integer our_character_count:integer user_id:references:users
This commit is contained in:
25
test/support/fixtures/translators_fixtures.ex
Normal file
25
test/support/fixtures/translators_fixtures.ex
Normal file
@ -0,0 +1,25 @@
|
||||
defmodule Outlook.TranslatorsFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `Outlook.Translators` context.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Generate a deepl_account.
|
||||
"""
|
||||
def deepl_account_fixture(attrs \\ %{}) do
|
||||
{:ok, deepl_account} =
|
||||
attrs
|
||||
|> Enum.into(%{
|
||||
auth_key: "some auth_key",
|
||||
character_count: 42,
|
||||
character_limit: 42,
|
||||
description: "some description",
|
||||
name: "some name",
|
||||
our_character_count: 42
|
||||
})
|
||||
|> Outlook.Translators.create_deepl_account()
|
||||
|
||||
deepl_account
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user