Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
23 Zeilen
Kein EOL
592 B
Ruby
23 Zeilen
Kein EOL
592 B
Ruby
require 'rails_helper'
|
|
|
|
describe ExtraLocalesControllerCustomWizard, type: :request do
|
|
before do
|
|
CustomWizard::Template.save(
|
|
JSON.parse(File.open(
|
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/wizard.json"
|
|
).read),
|
|
skip_jobs: true)
|
|
end
|
|
|
|
before do
|
|
@controller = ExtraLocalesController.new
|
|
end
|
|
|
|
it "returns locales when requested by wizard" do
|
|
expect(
|
|
ExtraLocalesController.url("wizard")
|
|
).to eq(
|
|
"#{Discourse.base_path}/extra-locales/wizard?v=#{ExtraLocalesController.bundle_js_hash("wizard")}"
|
|
)
|
|
end
|
|
end |