コード例 #1
0
ファイル: test_base.py プロジェクト: AlJohri/celery
 def test_get_options(self):
     cmd = Command()
     cmd.option_list = (1, 2, 3)
     self.assertTupleEqual(cmd.get_options(), (1, 2, 3))
コード例 #2
0
ファイル: test_base.py プロジェクト: yinlinzh/celery
 def test_get_options(self):
     cmd = Command()
     cmd.option_list = (1, 2, 3)
     assert cmd.get_options() == (1, 2, 3)
コード例 #3
0
 def test_get_options(self):
     cmd = Command()
     cmd.option_list = (1, 2, 3)
     self.assertTupleEqual(cmd.get_options(), (1, 2, 3))
コード例 #4
0
ファイル: test_base.py プロジェクト: pashinin/celery
 def test_get_options(self):
     cmd = Command()
     cmd.option_list = (1, 2, 3)
     assert cmd.get_options() == (1, 2, 3)