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)
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())
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)
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())
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)
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)
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)
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)
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)
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)
def test_log_file_created(): lode.log('created file') assert(os.path.isfile(LODEFILE))
def test_log_function_exists(): assert(lode.log('hello') is None)
def c(): lode.log('this has a traceback attached', traceback=5)
def nested(self): lode.log('deep function', qualify=True)
def test_log_function_exists(): assert (lode.log('hello') is None)
def test_setting_filename(): name = 'different_lodefile' lode.log('hi there', name=name) with open(name) as f: assert('hi there' in f.read())
def test_setting_filename(): name = 'different_lodefile' lode.log('hi there', name=name) with open(name) as f: assert ('hi there' in f.read())
def test_log_file_created(): lode.log('created file') assert (os.path.isfile(LODEFILE))
def f1(): lode.log('caller depth=3', depth=3)