]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/report_test.rb
Merge branch 'master' into next
[rails.git] / test / models / report_test.rb
index 198d9ddf94d8fd6f08a173d266514ba6226ab4cc..b65753b822d4e1a075d5337d37d951457990a648 100644 (file)
@@ -1,7 +1,35 @@
-require 'test_helper'
+require "test_helper"
 
 class ReportTest < ActiveSupport::TestCase
 
 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
 end