Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
21 Zeilen
Kein EOL
699 B
Ruby
21 Zeilen
Kein EOL
699 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../../plugin_helper'
|
|
|
|
describe CustomWizard::BasicWizardSerializer do
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
it 'should return basic wizard attributes' do
|
|
CustomWizard::Template.save(
|
|
JSON.parse(File.open(
|
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/wizard.json"
|
|
).read),
|
|
skip_jobs: true)
|
|
json = CustomWizard::BasicWizardSerializer.new(
|
|
CustomWizard::Builder.new("super_mega_fun_wizard", user).build,
|
|
scope: Guardian.new(user)
|
|
).as_json
|
|
expect(json[:basic_wizard][:id]).to eq("super_mega_fun_wizard")
|
|
expect(json[:basic_wizard][:name]).to eq("Super Mega Fun Wizard")
|
|
end
|
|
end |