コード例 #1
0
ファイル: test_main.py プロジェクト: BrighterEyer/pythonGames
def test_thx():
    coders = HireSystem.staff()
    assert coders == None
コード例 #2
0
def staff():
    ''' Thanks to all contrubutors coder '''
    HireSystem.staff()
コード例 #3
0
def staff():
    """ Thanks to all contrubutors coder """
    HireSystem.staff()
コード例 #4
0
def test_load_coders_get_name():
    coders = HireSystem.load_coders()
    coders_name = map(lambda x:x.name, coders)
    assert isinstance(coders_name, list)
コード例 #5
0
def test_load_coders():
    coders = HireSystem.load_coders()
    assert isinstance()
コード例 #6
0
#coding: utf-8
from core.hire_system import HireSystem

def test_load_coders():
    coders = HireSystem.load_coders()
    assert isinstance()

def test_load_coders_get_name():
    coders = HireSystem.load_coders()
    coders_name = map(lambda x:x.name, coders)
    assert isinstance(coders_name, list)


if __name__ == '__main__':
    coders = HireSystem.load_coders()
コード例 #7
0
def test_thx():
    coders = HireSystem.staff()
    assert coders == None