Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
35021eb176
I've tweaked the subscription client gem so we can just use the gem's models and tables in this plugin's rspec, which makes duplicating and stubbing them unnecessary. See further https://github.com/paviliondev/discourse_subscription_client
18 Zeilen
628 B
Ruby
18 Zeilen
628 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe InvitesControllerCustomWizard, type: :request do
|
|
fab!(:topic) { Fabricate(:topic) }
|
|
let(:invite) { Invite.generate(topic.user, email: "angus@mcleod.org", topic: topic) }
|
|
let(:template) { get_wizard_fixture("wizard") }
|
|
|
|
before do
|
|
@controller = InvitesController.new
|
|
end
|
|
|
|
it "redirects a user to wizard after invite if after signup is enabled" do
|
|
template['after_signup'] = true
|
|
CustomWizard::Template.save(template, skip_jobs: true)
|
|
put "/invites/show/#{invite.invite_key}.json"
|
|
expect(cookies[:destination_url]).to eq("/w/super-mega-fun-wizard")
|
|
end
|
|
end
|