コード例 #1
0
ファイル: test_prep_template.py プロジェクト: yimsea/qiita
 def test_check_prep_template_exists_no_template(self):
     obs = _check_prep_template_exists(3100)
     self.assertEqual(obs, {'status': 'error',
                            'message': 'Prep template 3100 does not exist'})
コード例 #2
0
 def test_check_prep_template_exists_no_template(self):
     obs = _check_prep_template_exists(3100)
     self.assertEqual(obs, {
         'status': 'error',
         'message': 'Prep template 3100 does not exist'
     })
コード例 #3
0
ファイル: test_prep_template.py プロジェクト: yimsea/qiita
 def test_check_prep_template_exists(self):
     obs = _check_prep_template_exists(1)
     self.assertEqual(obs, {'status': 'success', 'message': ''})
コード例 #4
0
 def test_check_prep_template_exists(self):
     obs = _check_prep_template_exists(1)
     self.assertEqual(obs, {'status': 'success', 'message': ''})