X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e31376e28da8f656e33508cc899da465b63673c5..46c183ffeb68a45e6e0793c813f2756109f40642:/test/models/report_test.rb diff --git a/test/models/report_test.rb b/test/models/report_test.rb index c7d4f0adc..810035c9d 100644 --- a/test/models/report_test.rb +++ b/test/models/report_test.rb @@ -1,7 +1,35 @@ require "test_helper" class ReportTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end + 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) + + assert report.valid? + report.details = "" + assert !report.valid? + end + + def test_category_required + report = create(:report) + + assert report.valid? + report.category = "" + assert !report.valid? + end end