remove some warnings for now

need to expamnd those tests later
This commit is contained in:
Lili (Tlapka) 2021-10-11 16:03:10 +02:00
parent d6a59171e7
commit 9c47d722dd
3 changed files with 12 additions and 13 deletions

View File

@ -3,9 +3,9 @@ defmodule PokemonCoutureWeb.ClothesControllerTest do
alias PokemonCouture.Shops
@create_attrs %{game: "some game", location: "some location", type: "hat", name: "some name", color: "some color"}
@update_attrs %{game: "some updated game", location: "some updated location", type: "shirt", name: "some updated name", colo: "some updated color"}
@invalid_attrs %{game: nil, location: nil, type: "no", name: nil, color: nil}
# @create_attrs %{game: "some game", location: "some location", type: "hat", name: "some name", color: "some color"}
# @update_attrs %{game: "some updated game", location: "some updated location", type: "shirt", name: "some updated name", colo: "some updated color"}
# @invalid_attrs %{game: nil, location: nil, type: "no", name: nil, color: nil}
def fixture(:clothes) do
{:ok, clothes} = Shops.create_clothes(@create_attrs)
@ -19,8 +19,8 @@ defmodule PokemonCoutureWeb.ClothesControllerTest do
end
end
defp create_clothes(_) do
clothes = fixture(:clothes)
%{clothes: clothes}
end
# defp create_clothes(_) do
# clothes = fixture(:clothes)
# %{clothes: clothes}
# end
end

View File

@ -12,6 +12,6 @@ defmodule PokemonCoutureWeb.ClothesTrackerLiveTest do
test "logged in user sees page", %{conn: conn} do
conn = conn |> log_in_user(user_fixture())
{:ok, _view, html} = live(conn, "/tracker")
assert html =~ "Listing Clothes"
assert html =~ "Clothes Tracker"
end
end

View File

@ -1,7 +1,6 @@
defmodule PokemonCoutureWeb.ClothesComponentTest do
import Plug.Conn
import Phoenix.ConnTest
import Phoenix.LiveViewTest
import PokemonCouture.AccountsFixtures
@endpoint PokemonCoutureWeb.Endpoint
# import Plug.Conn
# import Phoenix.LiveViewTest
# import PokemonCouture.AccountsFixtures
# @endpoint PokemonCoutureWeb.Endpoint
end