X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ab3150646c539daef1a05a25245fe70c6ad8206f..46c183ffeb68a45e6e0793c813f2756109f40642:/test/models/report_test.rb diff --git a/test/models/report_test.rb b/test/models/report_test.rb index fad76297b..810035c9d 100644 --- a/test/models/report_test.rb +++ b/test/models/report_test.rb @@ -1,6 +1,22 @@ require "test_helper" class ReportTest < ActiveSupport::TestCase + def test_issue_required + report = create(:report) + + assert report.valid? + report.issue = nil + assert !report.valid? + end + + def test_user_required + report = create(:report) + + assert report.valid? + report.user = nil + assert !report.valid? + end + def test_details_required report = create(:report)