def test_patch_bumps(v1, v2): start = Version(v1) start.bump_patch() expect(start) == Version(v2)
def test_four_component_patch_bump(v1, v2): start = Version(v1) start.bump_patch() assert start == Version(v2)
def test_patch_bumps(v1, v2): start = Version(v1) start.bump_patch() assert start == Version(v2)