2016-07-27 20:03:06 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe UserAgentDetail, type: :model do
|
|
|
|
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
|
2016-08-09 13:43:47 -04:00
|
|
|
it 'is valid with a subject' do
|
|
|
|
detail = build(:user_agent_detail)
|
|
|
|
|
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
|