if we consider this basic controller test example:
describe "index" do
test "lists all posts", %{conn: conn} do
conn = get(conn, Routes.post_path(conn, :index))
assert html_response(conn, 200) =~ "List all posts"
end
end
we will see that the pattern used for identifying elixir tests doesn't work as the regex doesn't account for the ,%{conn: conn} part.
The change in this MR should improve the experience of this plugin with Elixir.
if we consider this basic controller test example:
we will see that the pattern used for identifying elixir tests doesn't work as the regex doesn't account for the
,%{conn: conn}
part.The change in this MR should improve the experience of this plugin with Elixir.