def test_given_weight_is_not_acceptable_451(self):
     statement = FormatValidators.validate_weight("451")
     self.assertFalse(statement)
 def test_given_weight_is_acceptable(self):
     statement = FormatValidators.validate_weight("50")
     self.assertEqual("50", statement)