示例#1
0
def test_function_name_logged():
    lode.log('logging function name')

    with open(LODEFILE) as f:
        function_found = False
        for line in f:
            if 'test_function_name_logged' in line:
                function_found = True
    assert (function_found)
示例#2
0
文件: test_lode.py 项目: kragniz/lode
def test_things_are_logged_with_sep():
    things = ('one', 'two', 'three', 'four')
    sep = ':'
    things_str = sep.join(things)

    lode.log(*things, sep=sep)

    with open(LODEFILE) as f:
        assert(things_str in f.read())
示例#3
0
文件: test_lode.py 项目: kragniz/lode
def test_function_name_logged():
    lode.log('logging function name')

    with open(LODEFILE) as f:
        function_found = False
        for line in f:
            if 'test_function_name_logged' in line:
                function_found = True
    assert(function_found)
示例#4
0
def test_things_are_logged_with_sep():
    things = ('one', 'two', 'three', 'four')
    sep = ':'
    things_str = sep.join(things)

    lode.log(*things, sep=sep)

    with open(LODEFILE) as f:
        assert (things_str in f.read())
示例#5
0
文件: test_lode.py 项目: kragniz/lode
def test_thing_is_logged():
    thing = 'thing with some different words'

    lode.log(thing)

    with open(LODEFILE) as f:
        thing_found = False
        for line in f:
            if thing in line:
                thing_found = True

    assert(thing_found)
示例#6
0
def test_thing_is_logged():
    thing = 'thing with some different words'

    lode.log(thing)

    with open(LODEFILE) as f:
        thing_found = False
        for line in f:
            if thing in line:
                thing_found = True

    assert (thing_found)
示例#7
0
文件: test_lode.py 项目: kragniz/lode
def test_thing_is_logged_to_different_file():
    thing = 'thing with some different words'
    filename = '/tmp/new_lodefile'
    with open(filename, 'a') as f:
        lode.log(thing, file=f)

    with open(filename) as f:
        thing_found = False
        for line in f:
            if thing in line:
                thing_found = True

    assert(thing_found)
示例#8
0
def test_five_things_are_logged():
    things = ('one', 'two', 'three', 'four')
    things_str = ' '.join(things)

    lode.log(*things)

    with open(LODEFILE) as f:
        things_found = False
        for line in f:
            if things_str in line:
                things_found = True

    assert (things_found)
示例#9
0
def test_thing_is_logged_to_different_file():
    thing = 'thing with some different words'
    filename = '/tmp/new_lodefile'
    with open(filename, 'a') as f:
        lode.log(thing, file=f)

    with open(filename) as f:
        thing_found = False
        for line in f:
            if thing in line:
                thing_found = True

    assert (thing_found)
示例#10
0
文件: test_lode.py 项目: kragniz/lode
def test_five_things_are_logged():
    things = ('one', 'two', 'three', 'four')
    things_str = ' '.join(things)

    lode.log(*things)

    with open(LODEFILE) as f:
        things_found = False
        for line in f:
            if things_str in line:
                things_found = True

    assert(things_found)
示例#11
0
文件: test_lode.py 项目: kragniz/lode
def test_log_file_created():
    lode.log('created file')
    assert(os.path.isfile(LODEFILE))
示例#12
0
文件: test_lode.py 项目: kragniz/lode
def test_log_function_exists():
    assert(lode.log('hello') is None)
示例#13
0
文件: test_lode.py 项目: kragniz/lode
 def c():
     lode.log('this has a traceback attached', traceback=5)
示例#14
0
文件: test_lode.py 项目: kragniz/lode
 def nested(self):
     lode.log('deep function', qualify=True)
示例#15
0
def test_log_function_exists():
    assert (lode.log('hello') is None)
示例#16
0
文件: test_lode.py 项目: kragniz/lode
def test_setting_filename():
    name = 'different_lodefile'
    lode.log('hi there', name=name)
    with open(name) as f:
        assert('hi there' in f.read())
示例#17
0
def test_setting_filename():
    name = 'different_lodefile'
    lode.log('hi there', name=name)
    with open(name) as f:
        assert ('hi there' in f.read())
示例#18
0
def test_log_file_created():
    lode.log('created file')
    assert (os.path.isfile(LODEFILE))
示例#19
0
 def nested(self):
     lode.log('deep function', qualify=True)
示例#20
0
 def c():
     lode.log('this has a traceback attached', traceback=5)
示例#21
0
文件: test_lode.py 项目: kragniz/lode
 def f1():
     lode.log('caller depth=3', depth=3)
示例#22
0
 def f1():
     lode.log('caller depth=3', depth=3)