Add files from the old svn, r101.
[matthijs/upstream/mobilegtd.git] / tests / specs / model / model_spec.py
1 from model import model
2 import unittest
3
4 class StatusBehaviour(unittest.TestCase):
5     def setUp(self):
6         self.status = model.Status('schmactive',12,u's')
7     
8     def test_should_be_equal_to_other_status_with_identical_name_and_value(self):
9         other = model.Status('schmactive',12)
10         self.assertEqual(self.status,other)