0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/spec/extensions/users_controller_spec.rb

23 Zeilen
631 B
Ruby

2021-03-11 07:30:15 +01:00
# frozen_string_literal: true
require_relative '../plugin_helper'
2020-11-03 01:24:20 +01:00
describe CustomWizardUsersController, type: :request do
let(:template) do
JSON.parse(File.open(
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/wizard.json"
).read)
end
2021-03-11 07:30:15 +01:00
2020-11-03 01:24:20 +01:00
before do
@controller = UsersController.new
end
2021-03-11 07:30:15 +01:00
2020-11-03 01:24:20 +01:00
it "redirects a user to wizard after sign up if after signup is enabled" do
template['after_signup'] = true
CustomWizard::Template.save(template, skip_jobs: true)
sign_in(Fabricate(:user))
get "/u/account-created"
expect(response).to redirect_to("/w/super-mega-fun-wizard")
2021-03-11 07:30:15 +01:00
end
end