Compare commits

..

1 Commits

Author SHA1 Message Date
571f6fffdb improve tagging logic
Some checks are pending
continuous-integration/drone/push Build is running
2022-12-19 22:34:00 -05:00
3 changed files with 24 additions and 12 deletions

View File

@ -114,9 +114,13 @@ defmodule MemexWeb.ContextLiveTest do
assert_patch(show_live, Routes.context_show_path(conn, :edit, context.slug))
assert show_live
html =
show_live
|> form("#context-form", context: @invalid_attrs)
|> render_change() =~ "can't be blank"
|> render_change()
assert html =~ "can't be blank"
assert html =~ "tags must be comma-delimited"
{:ok, _, html} =
show_live

View File

@ -54,9 +54,13 @@ defmodule MemexWeb.NoteLiveTest do
assert_patch(index_live, Routes.note_index_path(conn, :new))
assert index_live
html =
index_live
|> form("#note-form", note: @invalid_attrs)
|> render_change() =~ "can't be blank"
|> render_change()
assert html =~ "can't be blank"
assert html =~ "tags must be comma-delimited"
{:ok, _, html} =
index_live

View File

@ -128,9 +128,13 @@ defmodule MemexWeb.PipelineLiveTest do
assert_patch(show_live, Routes.pipeline_show_path(conn, :edit, pipeline.slug))
assert show_live
html =
show_live
|> form("#pipeline-form", pipeline: @invalid_attrs)
|> render_change() =~ "can't be blank"
|> render_change()
assert html =~ "can't be blank"
assert html =~ "tags must be comma-delimited"
{:ok, _, html} =
show_live