1
0
Fork 0
discourse-custom-wizard-unl.../spec/components/custom_wizard/step_spec.rb
2022-03-12 15:08:56 +01:00

22 Zeilen
547 B
Ruby

# frozen_string_literal: true
describe CustomWizard::Step do
let(:step_hash) { get_wizard_fixture("step/step") }
let(:field_hash) { get_wizard_fixture("field/field") }
before do
@step = CustomWizard::Step.new(step_hash[:id])
end
it "adds fields" do
@step.add_field(field_hash)
expect(@step.fields.size).to eq(1)
expect(@step.fields.first.index).to eq(0)
end
it "adds fields with custom indexes" do
field_hash[:index] = 2
@step.add_field(field_hash)
expect(@step.fields.first.index).to eq(2)
end
end