aboutsummaryrefslogtreecommitdiff
path: root/test/tc_mauve_person.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2011-08-18 18:11:10 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2011-08-18 18:11:10 +0100
commit6aba0c3d8e2d30797755dc8b968fe338e13b8df4 (patch)
treea9c3a469146a47fe88e3a56c8bf40c0ed9b66288 /test/tc_mauve_person.rb
parentc30daf56d4aab9e41a993d82406cba947c8efe32 (diff)
* Fixed up Alert to postpone raises/clears within initial sleep period for old alerts
* Fixed up AlertChanged to do the same * Added a migration method for the new AlertHistories table * added singleton cleanup for tests * moar tests * cleaned up Alert a bit
Diffstat (limited to 'test/tc_mauve_person.rb')
-rw-r--r--test/tc_mauve_person.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/tc_mauve_person.rb b/test/tc_mauve_person.rb
index 8ac3141..0026db6 100644
--- a/test/tc_mauve_person.rb
+++ b/test/tc_mauve_person.rb
@@ -9,8 +9,35 @@ require 'pp'
class TcMauvePerson < Mauve::UnitTest
+ def setup
+ super
+ setup_database
+ end
+ def teardown
+ teardown_database
+ super
+ end
+ def test_suppressed?
+
+ end
+
+ def test_send_alert
+
+ end
+
+ def test_do_send_alert
+
+ end
+
+ def test_current_alerts
+
+ end
+
+ def test_is_on_holiday?
+
+ end
end