2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-06 13:55:51 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 01:12:25 -04:00
|
|
|
RSpec.describe Marker do
|
2024-09-05 11:36:05 -04:00
|
|
|
describe 'Validations' do
|
|
|
|
it { is_expected.to validate_inclusion_of(:timeline).in_array(described_class::TIMELINES) }
|
2023-03-04 11:16:45 -05:00
|
|
|
end
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|