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