def test_quote_age_less_than_one(self):
     cat_dict = {
         'id': 1,
         'age': 0,
         'breed': 'siamese',
         'zip_code': '10704',
         'gender': 'male',
         'name': 'Fluffy',
         'species': 'cat'
     }
     cat = PetFactory(**cat_dict)
     self.assertEqual(cat.quote(), 181.0350)
 def test_quote_age_greater_than_eight(self):
     cat_dict = {
         'id': 1,
         'age': 9,
         'breed': 'siamese',
         'zip_code': '10704',
         'gender': 'male',
         'name': 'Fluffy',
         'species': 'cat'
     }
     cat = PetFactory(**cat_dict)
     self.assertEqual(cat.quote(), 183.0600)
 def test_quote_default_zip_code(self):
     cat_dict = {
         'id': 1,
         'age': 2,
         'breed': 'siamese',
         'zip_code': '10704',
         'gender': 'male',
         'name': 'Fluffy',
         'species': 'cat'
     }
     cat = PetFactory(**cat_dict)
     self.assertEqual(cat.quote(), 181.4400)
 def test_quote_dog_default_breed(self):
     dog_dict = {
         'id': 1,
         'age': 3,
         'breed': 'bull_dog',
         'zip_code': '02481',
         'gender': 'male',
         'name': 'Spot',
         'species': 'dog'
     }
     dog = PetFactory(**dog_dict)
     self.assertEqual(dog.quote(), 182.1600)
 def test_quote_cat_default_breed(self):
     cat_dict = {
         'id': 1,
         'age': 2,
         'breed': 'angora',
         'zip_code': '02481',
         'gender': 'male',
         'name': 'Fluffy',
         'species': 'cat'
     }
     cat = PetFactory(**cat_dict)
     self.assertEqual(cat.quote(), 181.4850)
 def test_quote_dog(self):
     dog_dict = {
         'id': 1,
         'age': 3,
         'breed': 'golden_retriever',
         'zip_code': '02481',
         'gender': 'male',
         'name': 'Spot',
         'species': 'dog'
     }
     dog = PetFactory(**dog_dict)
     self.assertEqual(dog.quote(), 182.3850)
 def test_quote_cat(self):
     cat_dict = {
         'id': 1,
         'age': 2,
         'breed': 'siamese',
         'zip_code': '90210',
         'gender': 'male',
         'name': 'Fluffy',
         'species': 'cat'
     }
     cat = PetFactory(**cat_dict)
     self.assertEqual(cat.quote(), 181.3050)