add more text replacements

This commit is contained in:
2023-03-30 21:38:56 -04:00
parent bdddf65685
commit e0e7b25bc4
15 changed files with 59 additions and 59 deletions

View File

@ -318,12 +318,12 @@ defmodule CanneryWeb.PackLiveTest do
assert_patch(index_live, Routes.pack_index_path(conn, :add_shot_record, pack))
assert index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
{:ok, _view, html} =
index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_submit(shot_record: @shot_record_create_attrs)
|> follow_redirect(conn, Routes.pack_index_path(conn, :index))
@ -401,12 +401,12 @@ defmodule CanneryWeb.PackLiveTest do
assert_patch(index_live, Routes.pack_show_path(conn, :add_shot_record, pack))
assert index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
{:ok, _view, html} =
index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_submit(shot_record: @shot_record_create_attrs)
|> follow_redirect(conn, Routes.pack_show_path(conn, :show, pack))
@ -423,7 +423,7 @@ defmodule CanneryWeb.PackLiveTest do
assert index_live
|> element(~s/a[aria-label="Edit shot recordd of #{shot_record.count} shots"]/)
|> render_click() =~ "Edit Shot Records"
|> render_click() =~ "Edit Shot Record"
assert_patch(
index_live,
@ -431,12 +431,12 @@ defmodule CanneryWeb.PackLiveTest do
)
assert index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_change(shot_record: @shot_record_invalid_attrs) =~ "can't be blank"
{:ok, _view, html} =
index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_submit(shot_record: @shot_record_update_attrs)
|> follow_redirect(conn, Routes.pack_show_path(conn, :show, pack))

View File

@ -133,12 +133,12 @@ defmodule CanneryWeb.RangeLiveTest do
assert_patch(index_live, Routes.range_index_path(conn, :add_shot_record, pack))
assert index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_change(shot_record: @invalid_attrs) =~ "can't be blank"
{:ok, _view, html} =
index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_submit(shot_record: @create_attrs)
|> follow_redirect(conn, Routes.range_index_path(conn, :index))
@ -151,17 +151,17 @@ defmodule CanneryWeb.RangeLiveTest do
assert index_live
|> element(~s/a[aria-label="Edit shot record of #{shot_record.count} shots"]/)
|> render_click() =~ "Edit Shot Records"
|> render_click() =~ "Edit Shot Record"
assert_patch(index_live, Routes.range_index_path(conn, :edit, shot_record))
assert index_live
|> form("#shot-group-form")
|> form("#shot-record-form")
|> render_change(shot_record: @invalid_attrs) =~ "can't be blank"
{:ok, _view, html} =
index_live
|> form("#shot-group-form", shot_record: @update_attrs)
|> form("#shot-record-form", shot_record: @update_attrs)
|> render_submit()
|> follow_redirect(conn, Routes.range_index_path(conn, :index))