diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/completion/aaa | 0 | ||||
-rw-r--r-- | test/completion/aab | 0 | ||||
-rw-r--r-- | test/completion/aac | 0 | ||||
-rw-r--r-- | test/test_console.py | 12 |
4 files changed, 12 insertions, 0 deletions
diff --git a/test/completion/aaa b/test/completion/aaa new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/completion/aaa diff --git a/test/completion/aab b/test/completion/aab new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/completion/aab diff --git a/test/completion/aac b/test/completion/aac new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/completion/aac diff --git a/test/test_console.py b/test/test_console.py index 9236baff..98a1270f 100644 --- a/test/test_console.py +++ b/test/test_console.py @@ -123,6 +123,17 @@ class uformat_flow(libpry.AutoTree): class uPathCompleter(libpry.AutoTree): + def test_lookup_construction(self): + c = console._PathCompleter() + assert c.complete("/tm") == "/tmp/" + c.reset() + + assert c.complete("./completion/a") == "./completion/aaa" + c.reset() + assert c.complete("./completion/aaa") == "./completion/aaa" + assert c.complete("./completion/aaa") == "./completion/aab" + + def test_completion(self): c = console._PathCompleter(True) c.reset() @@ -152,6 +163,7 @@ class uPathCompleter(libpry.AutoTree): + tests = [ uformat_keyvals(), uformat_flow(), |