Ejemplo n.º 1
0
def test_micro_bumps(v1, v2):
    start = Version(v1)
    start.bump_micro()
    expect(start) == Version(v2)
Ejemplo n.º 2
0
def test_four_component_micro_bump(v1, v2):
    start = Version(v1)
    start.bump_micro()
    expect(start) == Version(v2)