예제 #1
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop10():
    assert st1.pop() == 'Overflow!!!'
예제 #2
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop8():
    assert st1.pop() == 2
예제 #3
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop9():
    assert st1.pop() == 1
예제 #4
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop6():
    assert st1.pop() == 4
예제 #5
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop7():
    assert st1.pop() == 3
예제 #6
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop5():
    assert st1.pop() == 5
예제 #7
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop4():
    assert st1.pop() == 6
예제 #8
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop3():
    assert st1.pop() == 7
예제 #9
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop2():
    assert st1.pop() == 8
예제 #10
0
파일: test_stack.py 프로젝트: PKStuff/task
def test_pop1():
    assert st1.pop() == 9