mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 23:06:19 +08:00
Remove mock that was breaking tests
This commit is contained in:
parent
d1a5d8ea62
commit
46d2e17194
|
@ -26,18 +26,16 @@ describe GroupsController do
|
|||
end
|
||||
|
||||
describe "counts" do
|
||||
it "ensures the group can be seen" do
|
||||
Guardian.any_instance.expects(:can_see?).with(group).returns(false)
|
||||
xhr :get, :counts, group_id: group.name
|
||||
expect(response).not_to be_success
|
||||
end
|
||||
|
||||
it "performs the query and responds with JSON" do
|
||||
Guardian.any_instance.expects(:can_see?).with(group).returns(true)
|
||||
Group.any_instance.expects(:posts_for).returns(Group.none)
|
||||
it "returns counts if it can be seen" do
|
||||
xhr :get, :counts, group_id: group.name
|
||||
expect(response).to be_success
|
||||
end
|
||||
|
||||
it "returns no counts if it can not be seen" do
|
||||
group.update_columns(visible: false)
|
||||
xhr :get, :counts, group_id: group.name
|
||||
expect(response).not_to be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe "posts" do
|
||||
|
|
Loading…
Reference in New Issue
Block a user