2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-07-27 20:03:06 -04:00
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe UserAgentDetail do
|
2016-07-27 20:03:06 -04:00
|
|
|
describe '.submittable?' do
|
2016-08-09 13:43:47 -04:00
|
|
|
it 'is submittable when not already submitted' do
|
|
|
|
detail = build(:user_agent_detail)
|
|
|
|
|
2016-07-27 20:03:06 -04:00
|
|
|
expect(detail.submittable?).to be_truthy
|
|
|
|
end
|
2016-08-09 13:43:47 -04:00
|
|
|
|
|
|
|
it 'is not submittable when already submitted' do
|
|
|
|
detail = build(:user_agent_detail, submitted: true)
|
|
|
|
|
|
|
|
expect(detail.submittable?).to be_falsey
|
|
|
|
end
|
2016-07-27 20:03:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '.valid?' do
|
2020-09-08 14:08:48 -04:00
|
|
|
let(:issue) { create(:issue) }
|
|
|
|
|
2016-08-09 13:43:47 -04:00
|
|
|
it 'is valid with a subject' do
|
2020-09-08 14:08:48 -04:00
|
|
|
detail = build(:user_agent_detail, subject: issue)
|
2016-08-09 13:43:47 -04:00
|
|
|
|
2016-07-27 20:03:06 -04:00
|
|
|
expect(detail).to be_valid
|
|
|
|
end
|
2016-08-09 13:43:47 -04:00
|
|
|
|
|
|
|
it 'is invalid without a subject' do
|
|
|
|
detail = build(:user_agent_detail, subject: nil)
|
|
|
|
|
|
|
|
expect(detail).not_to be_valid
|
|
|
|
end
|
2016-07-27 20:03:06 -04:00
|
|
|
end
|
|
|
|
end
|