def test_to_dict(self): name = RAPIv1.identifier() description = RAPIv1.description() version = RAPIv1.version() the_dict = RAPIv1.to_dict() self.assertEqual(the_dict['name'], name, msg="Name should match") self.assertEqual(the_dict['description'], description, msg="Description should match") self.assertEqual(the_dict['version'], version, msg="Version should match")
def test_version(self): self.assertEqual(RAPIv1.version(), 1, msg="Version should be 1")