summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2017-01-17 09:47:06 +0100
committerLucas Hoffmann <l-m-h@web.de>2017-01-18 00:26:31 +0100
commitdc2a0172d9cfc5d31eb2efbd1812d135c9dc579a (patch)
treed30a3c79623a36f8d911602631bc45ce088836d9 /alot
parentbb622547de69958e257c64c255a3632f829553fd (diff)
Port old doctests to unittest: alot.commands.__init__
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/__init__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 05ce3424..47315fc3 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -53,10 +53,6 @@ def lookup_command(cmdname, mode):
:type mode: str
:rtype: (:class:`Command`, :class:`~argparse.ArgumentParser`,
dict(str->dict))
-
- >>> (cmd, parser, kwargs) = lookup_command('save', 'thread')
- >>> cmd
- <class 'alot.commands.thread.SaveAttachmentCommand'>
"""
if cmdname in COMMANDS[mode]:
return COMMANDS[mode][cmdname]
@@ -155,14 +151,6 @@ def commandfactory(cmdline, mode='global'):
:type cmdline: str
:param mode: mode identifier
:type mode: str
-
- >>> cmd = alot.commands.commandfactory('save --all /foo', mode='thread')
- >>> cmd
- <alot.commands.thread.SaveAttachmentCommand object at 0x272cf10
- >>> cmd.all
- True
- >>> cmd.path
- u'/foo'
"""
# split commandname and parameters
if not cmdline: