From b479f0eadeb491b71d41b4ae18916e546413a521 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Fri, 9 Dec 2016 14:52:46 +0000 Subject: [PATCH] Remove unnecessary test --- test/controllers/game_controller_test.exs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/controllers/game_controller_test.exs b/test/controllers/game_controller_test.exs index 54e3aef..bea84e5 100644 --- a/test/controllers/game_controller_test.exs +++ b/test/controllers/game_controller_test.exs @@ -10,11 +10,6 @@ defmodule Chess.GameControllerTest do assert html_response(conn, 200) =~ "Listing games" end - test "renders form for new resources", %{conn: conn} do - conn = get conn, game_path(conn, :new) - assert html_response(conn, 200) =~ "New game" - end - test "creates resource and redirects when data is valid", %{conn: conn} do conn = post conn, game_path(conn, :create), game: @valid_attrs assert redirected_to(conn) == game_path(conn, :index)