create gists

This commit is contained in:
zack 2024-10-26 15:01:33 -04:00
parent 79a17290d5
commit 43a8412f06
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
90 changed files with 1777 additions and 2107 deletions

View file

@ -0,0 +1,21 @@
defmodule Zoeyscomputer.GistsFixtures do
@moduledoc """
This module defines test helpers for creating
entities via the `Zoeyscomputer.Gists` context.
"""
@doc """
Generate a gist.
"""
def gist_fixture(attrs \\ %{}) do
{:ok, gist} =
attrs
|> Enum.into(%{
code: "some code",
lang: "some lang"
})
|> Zoeyscomputer.Gists.create_gist()
gist
end
end