Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
31 Zeilen
488 B
Ruby
31 Zeilen
488 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
describe CustomWizard::WizardController do
|
||
|
it 'returns a wizard if enabled' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'returns a disabled message if disabled' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'returns a missing message if no wizard exists' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'returns a custom wizard theme' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'updates the page title' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'skips a wizard if user is allowed to skip' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'returns a no skip message if user is not allowed to skip' do
|
||
|
|
||
|
end
|
||
|
end
|