2019-04-10 00:02:12 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-11-08 21:49:46 +09:00
|
|
|
RSpec.describe PollValidator do
|
2019-04-10 00:02:12 +09:00
|
|
|
describe '#validate' do
|
|
|
|
before do
|
|
|
|
validator.validate(poll)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:validator) { described_class.new }
|
2023-06-22 21:55:22 +09:00
|
|
|
let(:poll) { instance_double(Poll, options: options, expires_at: expires_at, errors: errors) }
|
|
|
|
let(:errors) { instance_double(ActiveModel::Errors, add: nil) }
|
2019-04-10 00:02:12 +09:00
|
|
|
let(:options) { %w(foo bar) }
|
|
|
|
let(:expires_at) { 1.day.from_now }
|
|
|
|
|
|
|
|
it 'have no errors' do
|
2023-02-20 10:33:27 +09:00
|
|
|
expect(errors).to_not have_received(:add)
|
2019-04-10 00:02:12 +09:00
|
|
|
end
|
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'when expires is just 5 min ago' do
|
2019-04-10 00:02:12 +09:00
|
|
|
let(:expires_at) { 5.minutes.from_now }
|
2023-02-19 07:10:19 +09:00
|
|
|
|
2019-04-10 00:02:12 +09:00
|
|
|
it 'not calls errors add' do
|
2023-02-20 10:33:27 +09:00
|
|
|
expect(errors).to_not have_received(:add)
|
2019-04-10 00:02:12 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|