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