mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
Wizard: Step 1
This commit is contained in:
33
spec/controllers/wizard_controller_spec.rb
Normal file
33
spec/controllers/wizard_controller_spec.rb
Normal file
@ -0,0 +1,33 @@
|
||||
require 'rails_helper'
|
||||
|
||||
describe 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
|
||||
|
||||
it "returns JSON when the mime type is appropriate" do
|
||||
log_in(:admin)
|
||||
xhr :get, :index, format: 'json'
|
||||
expect(response).to be_success
|
||||
expect(::JSON.parse(response.body).has_key?('wizard')).to eq(true)
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user