0
0
Fork 0

Simplify basic presence validations (#29664)

This commit is contained in:
Matt Jankowski 2024-09-05 11:36:05 -04:00 committed by GitHub
parent bc435c63bd
commit 5acec087ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 28 additions and 159 deletions

View file

@ -3,14 +3,7 @@
require 'rails_helper'
RSpec.describe Marker do
describe 'validations' do
describe 'timeline' do
it 'must be included in valid list' do
record = described_class.new(timeline: 'not real timeline')
expect(record).to_not be_valid
expect(record).to model_have_error_on_field(:timeline)
end
end
describe 'Validations' do
it { is_expected.to validate_inclusion_of(:timeline).in_array(described_class::TIMELINES) }
end
end