This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
require 'rails_helper'
|
|
|
|
describe Report do
|
|
describe 'statuses' do
|
|
it 'returns the statuses for the report' do
|
|
status = Fabricate(:status)
|
|
_other = Fabricate(:status)
|
|
report = Fabricate(:report, status_ids: [status.id])
|
|
|
|
expect(report.statuses).to eq [status]
|
|
end
|
|
end
|
|
end
|