]> git.openstreetmap.org Git - rails.git/commitdiff
Test validation of title and description presence for redactions
authorIshmeet Singh <singhishmeet16@gmail.com>
Thu, 7 Mar 2024 18:39:06 +0000 (00:09 +0530)
committerTom Hughes <tom@compton.nu>
Mon, 11 Mar 2024 09:27:30 +0000 (09:27 +0000)
test/models/redaction_test.rb

index 00133f1f48a70c14bde549f89699359f81805f47..4aa37f49228cfa9a2abda9a605cafd45b8d38775 100644 (file)
@@ -33,4 +33,16 @@ class RedactionTest < ActiveSupport::TestCase
     assert_predicate(node_v1, :redacted?, "Expected node version 1 to be redacted after redact! call.")
     assert_not_predicate(node_v2, :redacted?, "Expected node version 2 to not be redacted after redact! call.")
   end
+
+  def test_invalid_with_empty_title
+    redaction = build(:redaction, :title => "")
+    assert_not redaction.valid?
+    assert_includes redaction.errors.messages[:title], "can't be blank"
+  end
+
+  def test_invalid_with_empty_description
+    redaction = build(:redaction, :description => "")
+    assert_not redaction.valid?
+    assert_includes redaction.errors.messages[:description], "can't be blank"
+  end
 end