Add Translations
mix phx.gen.live Translations Translation translations \ lang:string title:string teaser:text content:map \ date:utc_datetime user_id:references:users \ public:boolean unauthorized:boolean article_id:references:articles
This commit is contained in:
26
test/support/fixtures/translations_fixtures.ex
Normal file
26
test/support/fixtures/translations_fixtures.ex
Normal file
@ -0,0 +1,26 @@
|
||||
defmodule Outlook.TranslationsFixtures do
|
||||
@moduledoc """
|
||||
This module defines test helpers for creating
|
||||
entities via the `Outlook.Translations` context.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Generate a translation.
|
||||
"""
|
||||
def translation_fixture(attrs \\ %{}) do
|
||||
{:ok, translation} =
|
||||
attrs
|
||||
|> Enum.into(%{
|
||||
content: %{},
|
||||
date: ~U[2022-12-25 17:13:00Z],
|
||||
lang: "some lang",
|
||||
public: true,
|
||||
teaser: "some teaser",
|
||||
title: "some title",
|
||||
unauthorized: true
|
||||
})
|
||||
|> Outlook.Translations.create_translation()
|
||||
|
||||
translation
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user