def test_serialization(self):
            json_str = str(self.m)
            self.assertIn('"firstName": "%s"' % self.m.first_name, json_str)
            self.assertIn('"lastName": "%s"' % self.m.last_name, json_str)