forked from AkkomaGang/akkoma
[#394] View tests fix.
This commit is contained in:
parent
7bcb6a183a
commit
abbf347dc7
2 changed files with 12 additions and 6 deletions
|
@ -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})
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue