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