Project

General

Profile

« Previous | Next » 

Revision 46edaeb9

Added by Dominic Cleal over 7 years ago

fixes #17484 - remove reported_at sequence from report factory

Prevents reports getting ever more out of sync from Time.now.

View differences:

test/models/report_test.rb
describe '.my_reports' do
setup do
@target_host = FactoryGirl.create(:host, :with_hostgroup)
@target_reports = FactoryGirl.create_pair(:config_report, host: @target_host)
@other_host = FactoryGirl.create(:host, :with_hostgroup)
@other_reports = FactoryGirl.create_pair(:report, host: @other_host)
@target_host = FactoryGirl.create(:host, :with_hostgroup, :with_reports, :report_count => 2)
@target_reports = @target_host.reports
@other_host = FactoryGirl.create(:host, :with_hostgroup, :with_reports, :report_count => 2)
@other_reports = @other_host.reports
end
test 'returns all reports for admin' do

Also available in: Unified diff