From 981cb7eeea480efe8367f28a049e7b3dbaa06633 Mon Sep 17 00:00:00 2001 From: nelsonic Date: Tue, 16 May 2023 09:54:32 +0100 Subject: [PATCH] update the page controller test from "DWYL Calendar" to just "Calendar" https://github.com/dwyl/calendar/actions/runs/4989773886/jobs/8934139218#step:8:59 ref #31 #35 --- .DS_Store | Bin 0 -> 6148 bytes .../controllers/page_html/privacy.html.heex | 2 ++ .../cal_web/controllers/page_controller_test.exs | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .DS_Store create mode 100644 lib/cal_web/controllers/page_html/privacy.html.heex diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..a9a7c06077fa1f26bc9c4d0fb761032176ea0297 GIT binary patch literal 6148 zcmeH~F$w}f3`G;&La^D=avBfd4TeQe-~}uM5ky6B>p8kVnIJe?i^vZof0CK7>??LQ zBBH~6zY^(1WCk~trG>^6c_&x7$x+5}dpn;l=L2e1pTt>P!+UA=W1B((BtQZrKmsK2 zLj>&JhRx4X|sK7L)2aQ(s zF~sWL4oz_`hnA|fT{MOdjVG&3F)*#|q6rC1vkL@un zGXmPJx9b5f6?f~~>sfslRa+N0)Q=;)`~)Det9Su-!+x>_G>4X|sKEFm;20Q4;Hv~4 DDr6GW literal 0 HcmV?d00001 diff --git a/lib/cal_web/controllers/page_html/privacy.html.heex b/lib/cal_web/controllers/page_html/privacy.html.heex new file mode 100644 index 0000000..dba84ea --- /dev/null +++ b/lib/cal_web/controllers/page_html/privacy.html.heex @@ -0,0 +1,2 @@ +Comming Soon! +see: https://github.com/dwyl/calendar/issues/37 diff --git a/test/cal_web/controllers/page_controller_test.exs b/test/cal_web/controllers/page_controller_test.exs index 31adaca..10bb946 100644 --- a/test/cal_web/controllers/page_controller_test.exs +++ b/test/cal_web/controllers/page_controller_test.exs @@ -3,6 +3,6 @@ defmodule CalWeb.PageControllerTest do test "GET /", %{conn: conn} do conn = get(conn, ~p"/") - assert html_response(conn, 200) =~ "DWYL Calendar" + assert html_response(conn, 200) =~ "Calendar" end end