mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
26 lines
507 B
Ruby
26 lines
507 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
describe Wizard::WizardController do
|
||
|
|
||
|
context 'index' do
|
||
|
render_views
|
||
|
|
||
|
it 'needs you to be logged in' do
|
||
|
expect { xhr :get, :index }.to raise_error(Discourse::NotLoggedIn)
|
||
|
end
|
||
|
|
||
|
it "raises an error if you aren't an admin" do
|
||
|
log_in
|
||
|
xhr :get, :index
|
||
|
expect(response).to be_forbidden
|
||
|
end
|
||
|
|
||
|
it "renders the wizard if you are an admin" do
|
||
|
log_in(:admin)
|
||
|
xhr :get, :index
|
||
|
expect(response).to be_success
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|