mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 07:11:34 +08:00
Scaffold for new Wizard - Rails / Ember / Tests
This commit is contained in:
25
spec/controllers/wizard/wizard_controller_spec.rb
Normal file
25
spec/controllers/wizard/wizard_controller_spec.rb
Normal file
@ -0,0 +1,25 @@
|
||||
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
|
Reference in New Issue
Block a user