コード例 #1
0
def test_inverse_factorial_3():
    assert inverse_factorial.inverse_factorial(6) == '3!'
コード例 #2
0
def test_inverse_factorial_11():
    assert inverse_factorial.inverse_factorial(3) == 'NONE'
コード例 #3
0
def test_inverse_factorial_2():
    assert inverse_factorial.inverse_factorial(150) == 'NONE'
コード例 #4
0
def test_inverse_factorial():
    assert inverse_factorial.inverse_factorial(120) == '5!'
コード例 #5
0
def test_inverse_factorial_10():
    assert inverse_factorial.inverse_factorial(2) == '2!'
コード例 #6
0
def test_inverse_factorial_9():
    assert inverse_factorial.inverse_factorial(-3) == 'NONE'
コード例 #7
0
def test_inverse_factorial_8():
    assert inverse_factorial.inverse_factorial(1000000) == 'NONE'
コード例 #8
0
def test_inverse_factorial_7():
    assert inverse_factorial.inverse_factorial(1) == '0! OR 1!'
コード例 #9
0
def test_inverse_factorial_6():
    assert inverse_factorial.inverse_factorial(-2) == 'NONE'
コード例 #10
0
def test_inverse_factorial_5():
    assert inverse_factorial.inverse_factorial(0) == 'NONE'