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