def test_get_digits_of(): digits = pi.get_digits_of(pi.PI3) assert len(digits) == 1000 assert digits[:10] == '1415926535' assert digits[-10:] == '2164201989' os.unlink(pi.TMP_DIR + '/' + pi.PI3) #def test_three_parts(): # one = pi.get_digits_of(pi.PI3) # two = pi.get_digits(1000) # three = pi.get_pi(1000) # assert one == two == three
def test_get_digits_of(): digits = pi.get_digits_of(pi.PI3) assert len(digits) == 1000 assert digits[:10] == '1415926535' assert digits[-10:] == '2164201989' os.unlink(pi.TMP_DIR + '/' + pi.PI3)
def test_get_digits(): etalon = pi.get_digits_of(pi.PI3)[:200] result = pi.get_digits(200) assert result == etalon