This is a big milestone in completeness and stability. The sequence-of-operations property test had been on my list of things for a long time, finally writing it did two things:
- Revealed some operations on `SubunitFraction` and `Overdraft` that were glaringly missing.
- Helped identify a bug in `Money.__rtruediv__` that would have otherwise passed its unit tests (it failed raising an exception for division by zero and instead _returned_ zero).
So quite a big yield for a moderately sized investment.
What's Changed
* Implement missing subunit fraction operations by antonagestam in https://github.com/antonagestam/immoney/pull/76
* Implement missing overdraft operations by antonagestam in https://github.com/antonagestam/immoney/pull/77
* feature: Add sequence-of-operations property test by antonagestam in https://github.com/antonagestam/immoney/pull/78
**Full Changelog**: https://github.com/antonagestam/immoney/compare/0.6.0...0.7.0