X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/effb1b7f4170bb7244c4dfffcbe6134fe00e2bc4..cebb05a3ba6313c245509d7966cec184936f9c42:/test/models/report_test.rb diff --git a/test/models/report_test.rb b/test/models/report_test.rb index a0de9448c..b65753b82 100644 --- a/test/models/report_test.rb +++ b/test/models/report_test.rb @@ -1,11 +1,35 @@ require "test_helper" class ReportTest < ActiveSupport::TestCase + def test_issue_required + report = create(:report) + + assert report.valid? + report.issue = nil + assert_not report.valid? + end + + def test_user_required + report = create(:report) + + assert report.valid? + report.user = nil + assert_not report.valid? + end + def test_details_required report = create(:report) assert report.valid? - report.details = '' - assert !report.valid? + report.details = "" + assert_not report.valid? + end + + def test_category_required + report = create(:report) + + assert report.valid? + report.category = "" + assert_not report.valid? end end