예제 #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
 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
 def test_get_options(self):
     cmd = Command()
     cmd.option_list = (1, 2, 3)
     assert cmd.get_options() == (1, 2, 3)