Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/checkr/report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class Report < APIResource
api_class_method :create, :post

api_instance_method :save, :post, default_params: :changed_attributes
api_instance_method :complete, :post, ':path/complete'

def self.path
'/v1/reports'
Expand Down
7 changes: 7 additions & 0 deletions test/checkr/report_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ class ReportTest < Test::Unit::TestCase
report.save
assert_equal(test_report[:package], report.package)
end

should 'be completeable' do
@mock.expects(:post).once.with("#{@report_url}/#{test_report[:id]}/complete", anything, anything).returns(test_response(test_report))
report = Report.new(test_report)
report.complete
assert_equal(test_report[:status], "complete")
end
end


Expand Down