]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/report_test.rb
Add more tests
[rails.git] / test / models / report_test.rb
index 2ababa9888d5c881c18ca04cfca9c8bbd14c4e4b..810035c9da5d9a3fbdd97d986ad189fb377c37b9 100644 (file)
@@ -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)
 
@@ -8,4 +24,12 @@ class ReportTest < ActiveSupport::TestCase
     report.details = ""
     assert !report.valid?
   end
+
+  def test_category_required
+    report = create(:report)
+
+    assert report.valid?
+    report.category = ""
+    assert !report.valid?
+  end
 end