X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5add3cf67145e1d3ccefcfb6095b8e56321e2057..d3700e6201b4b78a70bbb2941572edc985b63c2c:/test/models/report_test.rb?ds=sidebyside diff --git a/test/models/report_test.rb b/test/models/report_test.rb index 198d9ddf9..b65753b82 100644 --- a/test/models/report_test.rb +++ b/test/models/report_test.rb @@ -1,7 +1,35 @@ -require 'test_helper' +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_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_not report.valid? + end + + def test_category_required + report = create(:report) + + assert report.valid? + report.category = "" + assert_not report.valid? + end end