it 'should add an additional option if the minimum is not steps from the default value' do
      question = Question.new(minimum: 0, maximum: 5, step: 2, default_value: 3)
      question.valid?
      expect(question.options).to eq([0, 1, 3, 5])