Exemplo n.º 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)
Exemplo n.º 2
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())
Exemplo n.º 3
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)
Exemplo n.º 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())
Exemplo n.º 5
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)
Exemplo n.º 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)
Exemplo n.º 7
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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 10
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)
Exemplo n.º 11
0
def test_log_file_created():
    lode.log('created file')
    assert(os.path.isfile(LODEFILE))
Exemplo n.º 12
0
def test_log_function_exists():
    assert(lode.log('hello') is None)
Exemplo n.º 13
0
 def c():
     lode.log('this has a traceback attached', traceback=5)
Exemplo n.º 14
0
 def nested(self):
     lode.log('deep function', qualify=True)
Exemplo n.º 15
0
def test_log_function_exists():
    assert (lode.log('hello') is None)
Exemplo n.º 16
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())
Exemplo n.º 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())
Exemplo n.º 18
0
def test_log_file_created():
    lode.log('created file')
    assert (os.path.isfile(LODEFILE))
Exemplo n.º 19
0
 def nested(self):
     lode.log('deep function', qualify=True)
Exemplo n.º 20
0
 def c():
     lode.log('this has a traceback attached', traceback=5)
Exemplo n.º 21
0
 def f1():
     lode.log('caller depth=3', depth=3)
Exemplo n.º 22
0
 def f1():
     lode.log('caller depth=3', depth=3)