Esempio n. 1
0
 def test_verify_template_2(self):
     template_name = 5
     with pytest.raises(TypeError) as e_info:
         Thinkcell.verify_template(template_name)
Esempio n. 2
0
 def test_verify_template_3(self):
     template_name = "example.pptx"
     assert Thinkcell.verify_template(template_name) == template_name
Esempio n. 3
0
 def test_verify_template_1(self):
     template_name = "not a file name"
     with pytest.raises(TypeError) as e_info:
         Thinkcell.verify_template(template_name)