Compare commits
	
		
			1 Commits
		
	
	
		
			571f6fffdb
			...
			1c33cd09c1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 1c33cd09c1 | 
| @@ -18,7 +18,7 @@ defmodule MemexWeb.ContextLiveTest do | |||||||
|   } |   } | ||||||
|   @invalid_attrs %{ |   @invalid_attrs %{ | ||||||
|     "content" => nil, |     "content" => nil, | ||||||
|     "tags_string" => " ", |     "tags_string" => "", | ||||||
|     "slug" => nil, |     "slug" => nil, | ||||||
|     "visibility" => nil |     "visibility" => nil | ||||||
|   } |   } | ||||||
| @@ -114,13 +114,9 @@ defmodule MemexWeb.ContextLiveTest do | |||||||
|  |  | ||||||
|       assert_patch(show_live, Routes.context_show_path(conn, :edit, context.slug)) |       assert_patch(show_live, Routes.context_show_path(conn, :edit, context.slug)) | ||||||
|  |  | ||||||
|       html = |       assert show_live | ||||||
|         show_live |              |> form("#context-form", context: @invalid_attrs) | ||||||
|         |> 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} = |       {:ok, _, html} = | ||||||
|         show_live |         show_live | ||||||
|   | |||||||
| @@ -19,7 +19,7 @@ defmodule MemexWeb.NoteLiveTest do | |||||||
|   } |   } | ||||||
|   @invalid_attrs %{ |   @invalid_attrs %{ | ||||||
|     "content" => nil, |     "content" => nil, | ||||||
|     "tags_string" => " ", |     "tags_string" => "", | ||||||
|     "slug" => nil, |     "slug" => nil, | ||||||
|     "visibility" => nil |     "visibility" => nil | ||||||
|   } |   } | ||||||
| @@ -54,13 +54,9 @@ defmodule MemexWeb.NoteLiveTest do | |||||||
|  |  | ||||||
|       assert_patch(index_live, Routes.note_index_path(conn, :new)) |       assert_patch(index_live, Routes.note_index_path(conn, :new)) | ||||||
|  |  | ||||||
|       html = |       assert index_live | ||||||
|         index_live |              |> form("#note-form", note: @invalid_attrs) | ||||||
|         |> 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} = |       {:ok, _, html} = | ||||||
|         index_live |         index_live | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ defmodule MemexWeb.PipelineLiveTest do | |||||||
|   } |   } | ||||||
|   @invalid_attrs %{ |   @invalid_attrs %{ | ||||||
|     "description" => nil, |     "description" => nil, | ||||||
|     "tags_string" => " ", |     "tags_string" => "", | ||||||
|     "slug" => nil, |     "slug" => nil, | ||||||
|     "visibility" => nil |     "visibility" => nil | ||||||
|   } |   } | ||||||
| @@ -128,13 +128,9 @@ defmodule MemexWeb.PipelineLiveTest do | |||||||
|  |  | ||||||
|       assert_patch(show_live, Routes.pipeline_show_path(conn, :edit, pipeline.slug)) |       assert_patch(show_live, Routes.pipeline_show_path(conn, :edit, pipeline.slug)) | ||||||
|  |  | ||||||
|       html = |       assert show_live | ||||||
|         show_live |              |> form("#pipeline-form", pipeline: @invalid_attrs) | ||||||
|         |> 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} = |       {:ok, _, html} = | ||||||
|         show_live |         show_live | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user