bots: Remove already present test function in virtual_fs bot.
Remove test function for virtual_fs bot from virtual_fs.py file.
This commit is contained in:
parent
728e5dcee6
commit
fd7bbf0098
|
@ -56,21 +56,6 @@ Use commands like `fs help write` for more details on specific
|
||||||
commands.
|
commands.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def test():
|
|
||||||
fs = fs_new()
|
|
||||||
user = 'test_user'
|
|
||||||
fs['user_paths'][user] = '/'
|
|
||||||
assert is_directory(fs, '/')
|
|
||||||
|
|
||||||
for cmd, expected_response in sample_conversation():
|
|
||||||
fs, msg = fs_command(fs, user, cmd)
|
|
||||||
if msg != expected_response:
|
|
||||||
raise AssertionError('''
|
|
||||||
cmd: %s
|
|
||||||
expected: %s
|
|
||||||
but got : %s
|
|
||||||
''' % (cmd, expected_response, msg))
|
|
||||||
|
|
||||||
def sample_conversation():
|
def sample_conversation():
|
||||||
return [
|
return [
|
||||||
('cd /', 'Current path: /'),
|
('cd /', 'Current path: /'),
|
||||||
|
@ -349,8 +334,3 @@ def is_directory(fs, fn):
|
||||||
return fs[fn]['kind'] == 'dir'
|
return fs[fn]['kind'] == 'dir'
|
||||||
|
|
||||||
handler_class = VirtualFsHandler
|
handler_class = VirtualFsHandler
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
# We eventually want to test bots with a "real" testing
|
|
||||||
# framework.
|
|
||||||
test()
|
|
||||||
|
|
Loading…
Reference in a new issue