aboutsummaryrefslogtreecommitdiff
path: root/test/tc_mauve_history.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/tc_mauve_history.rb')
-rw-r--r--test/tc_mauve_history.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/tc_mauve_history.rb b/test/tc_mauve_history.rb
index 62342f2..6b46b1d 100644
--- a/test/tc_mauve_history.rb
+++ b/test/tc_mauve_history.rb
@@ -25,9 +25,14 @@ class TcMauveHistory < Mauve::UnitTest
#
h = History.new(:alerts => [], :type => "note", :event => "Hello <script>alert(\"arse\");</script>")
- h.save
+ assert(h.save)
h.reload
assert_equal("Hello ",h.event, "HTML not stripped correctly on save.")
+
+ h = History.new(:alerts => [], :type => nil, :event => "Hello")
+ assert_raise(DataMapper::SaveFailureError, "History saved with blank type -- validation not working"){h.save}
+ assert_equal([:type], h.errors.keys, "Just the type field should be invalid")
+
end
end