mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
38 lines
876 B
Ruby
38 lines
876 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe Admin::FlagsController do
|
||
|
|
||
|
it "is a subclass of AdminController" do
|
||
|
(Admin::FlagsController < Admin::AdminController).should be_true
|
||
|
end
|
||
|
|
||
|
context 'while logged in as an admin' do
|
||
|
before do
|
||
|
@user = log_in(:admin)
|
||
|
end
|
||
|
|
||
|
context 'index' do
|
||
|
it 'returns empty json when nothing is flagged' do
|
||
|
xhr :get, :index
|
||
|
|
||
|
data = ::JSON.parse(response.body)
|
||
|
data["users"].should == []
|
||
|
data["posts"].should == []
|
||
|
end
|
||
|
|
||
|
it 'returns a valid json payload when some thing is flagged' do
|
||
|
p = Fabricate(:post)
|
||
|
u = Fabricate(:user)
|
||
|
|
||
|
PostAction.act(u, p, PostActionType.Types[:spam])
|
||
|
xhr :get, :index
|
||
|
|
||
|
data = ::JSON.parse(response.body)
|
||
|
data["users"].length == 2
|
||
|
data["posts"].length == 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|