Ensure that numerator is divisible by the denominator.
(numerator, denominator)
| 19 | |
| 20 | |
| 21 | def ensure_divisibility(numerator, denominator): |
| 22 | """Ensure that numerator is divisible by the denominator.""" |
| 23 | assert numerator % denominator == 0, '{} is not divisible by {}'.format( |
| 24 | numerator, denominator) |
| 25 | |
| 26 | |
| 27 | def divide(numerator, denominator): |
no outgoing calls
no test coverage detected