[#394] View tests fix.

This commit is contained in:
Ivan Tashkinov 2018-12-06 20:38:52 +03:00
parent 7bcb6a183a
commit abbf347dc7
2 changed files with 12 additions and 6 deletions

View File

@ -54,7 +54,8 @@ test "Represent a user account" do
note: "",
privacy: "public",
sensitive: false
}
},
tags: []
}
assert expected == AccountView.render("account.json", %{user: user})
@ -91,7 +92,8 @@ test "Represent a Service(bot) account" do
note: "",
privacy: "public",
sensitive: false
}
},
tags: []
}
assert expected == AccountView.render("account.json", %{user: user})

View File

@ -96,7 +96,8 @@ test "A user" do
"locked" => false,
"default_scope" => "public",
"no_rich_text" => false,
"fields" => []
"fields" => [],
"tags" => []
}
assert represented == UserView.render("show.json", %{user: user})
@ -137,7 +138,8 @@ test "A user for a given other follower", %{user: user} do
"locked" => false,
"default_scope" => "public",
"no_rich_text" => false,
"fields" => []
"fields" => [],
"tags" => []
}
assert represented == UserView.render("show.json", %{user: user, for: follower})
@ -179,7 +181,8 @@ test "A user that follows you", %{user: user} do
"locked" => false,
"default_scope" => "public",
"no_rich_text" => false,
"fields" => []
"fields" => [],
"tags" => []
}
assert represented == UserView.render("show.json", %{user: follower, for: user})
@ -228,7 +231,8 @@ test "A blocked user for the blocker" do
"locked" => false,
"default_scope" => "public",
"no_rich_text" => false,
"fields" => []
"fields" => [],
"tags" => []
}
blocker = Repo.get(User, blocker.id)