コード例 #1
0
 def test_args_url_and_text(self):
     self.assertRaises(DocoptExit,
                       docopt,
                       to_string(main_doc),
                       'lsa --url=URL --text=TEXT'.split(),
                       version=__version__)
コード例 #2
0
 def test_args_two_commands(self):
     self.assertRaises(DocoptExit,
                       docopt,
                       to_string(main_doc),
                       'lsa luhn'.split(),
                       version=__version__)
コード例 #3
0
 def test_args_url_and_file(self):
     self.assertRaises(DocoptExit,
                       docopt,
                       to_string(main_doc),
                       'lsa --url=URL --file=FILE'.split(),
                       version=__version__)
コード例 #4
0
ファイル: test_main.py プロジェクト: miso-belica/sumy
def test_args_just_command():
    args = docopt(to_string(main_doc), ['lsa'], version=__version__)

    assert DEFAULT_ARGS == args
コード例 #5
0
 def test_args_just_command(self):
     args = docopt(to_string(main_doc), ['lsa'], version=__version__)
     self.assertEqual(self.DEFAULT_ARGS, args)
コード例 #6
0
ファイル: test_main.py プロジェクト: Anhmike/sumy
 def test_args_none(self):
     self.assertRaises(DocoptExit, docopt, to_string(main_doc), None, version=__version__)
コード例 #7
0
ファイル: test_main.py プロジェクト: Anhmike/sumy
 def test_args_two_commands(self):
     self.assertRaises(DocoptExit, docopt, to_string(main_doc), 'lsa luhn'.split(), version=__version__)
コード例 #8
0
def test_args_two_commands():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), 'lsa luhn'.split(), version=__version__)
コード例 #9
0
def test_args_url_and_file():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc),
               'lsa --url=URL --file=FILE'.split(),
               version=__version__)
コード例 #10
0
def test_args_none():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), None, version=__version__)
コード例 #11
0
def test_args_just_command():
    args = docopt(to_string(main_doc), ['lsa'], version=__version__)

    assert DEFAULT_ARGS == args
コード例 #12
0
ファイル: test_main.py プロジェクト: miso-belica/sumy
def test_args_url_and_text():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), 'lsa --url=URL --text=TEXT'.split(), version=__version__)
コード例 #13
0
ファイル: test_main.py プロジェクト: miso-belica/sumy
def test_args_url_and_file():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), 'lsa --url=URL --file=FILE'.split(), version=__version__)
コード例 #14
0
ファイル: test_main.py プロジェクト: miso-belica/sumy
def test_args_two_commands():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), 'lsa luhn'.split(), version=__version__)
コード例 #15
0
ファイル: test_main.py プロジェクト: likegitcoding/sumy
 def test_args_url_and_text(self):
     self.assertRaises(DocoptExit, docopt, to_string(main_doc), 'lsa --url=URL --text=TEXT'.split(), version=__version__)
コード例 #16
0
def test_args_url_and_text():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc),
               'lsa --url=URL --text=TEXT'.split(),
               version=__version__)
コード例 #17
0
ファイル: test_main.py プロジェクト: Anhmike/sumy
 def test_ok_args(self):
     docopt(to_string(main_doc), 'luhn --url=URL --format=FORMAT'.split(), version=__version__)
コード例 #18
0
 def test_ok_args(self):
     docopt(to_string(main_doc),
            'luhn --url=URL --format=FORMAT'.split(),
            version=__version__)
コード例 #19
0
ファイル: test_main.py プロジェクト: Anhmike/sumy
 def test_args_just_command(self):
     args = docopt(to_string(main_doc), ['lsa'], version=__version__)
     self.assertEqual(self.DEFAULT_ARGS, args)
コード例 #20
0
 def test_args_none(self):
     self.assertRaises(DocoptExit,
                       docopt,
                       to_string(main_doc),
                       None,
                       version=__version__)
コード例 #21
0
ファイル: test_main.py プロジェクト: Anhmike/sumy
 def test_args_url_and_file(self):
     self.assertRaises(DocoptExit, docopt, to_string(main_doc), 'lsa --url=URL --file=FILE'.split(), version=__version__)
コード例 #22
0
ファイル: test_main.py プロジェクト: miso-belica/sumy
def test_args_none():
    with pytest.raises(DocoptExit):
        docopt(to_string(main_doc), None, version=__version__)