私のフェニックスコントローラーのテストでは、次のようなことをしています。
describe "update/2" do
setup [:create_user]
test "Edits, and responds with the user if attributes are valid", %{conn: conn, user: user} do
response =
conn
|> put(user_path(conn, :update, user.id, @update_attrs))
|> json_response(200)
expected = %{
"data" =>
%{"currentCity" => "pune", "mobileNumber" => "1234567890"}
}
assert expected == response
end
そして、私の応答マップは
%{
"data" => %{"currentCity" => "pune",
"mobileNumber" => "1234567890",
"name" => "xyz",
"gender" => "male"}}
私の応答マップには、予想されるマップに存在しない余分なキーが含まれているため、アサーションが==
失敗するため、このようなパターン マッチングでアサーションを実行しようとしています。
assert expected = response
しかし、この場合、expected と response の値が何であれ、アサーションは常に true です。
マップの場合、パターン マッチングで何が起こっているのか混乱しています。