daily-tracker

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

page_controller_test.exs (235B)


      1 defmodule DailyTrackerWeb.PageControllerTest do
      2   use DailyTrackerWeb.ConnCase
      3 
      4   test "GET /", %{conn: conn} do
      5     conn = get(conn, ~p"/")
      6     assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
      7   end
      8 end