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