The assertraises tag has no wiki summary.
2
votes
0answers
59 views
using assertRaises - handling propagated exceptions
I have some code where I'm testing for a wrapped exception, when it failed and the exception propagated I thought the error message and back trace wasn't verbose enough, primarily because it didn't ...
1
vote
1answer
44 views
Cant understand results while using assertRaises in unit testing on a sqlalchemy code
I am trying to unit test my sqlalchemy code.
def add_user(*user_details):
try:
u = User(*user_details)
session.add(u)
session.commit()
...
0
votes
1answer
222 views
Proper Assert_Raise Unit Testing and Use of Exception Class
I am working on Exercise 49 of Learn Ruby the Hard Way
The exercise asks to write a unit test for each function provided. One of the items I am testing is if a proper exception is raised. It is ...
0
votes
3answers
591 views
assertRaises just catches base exception
I'm running into a strange problem when using unittest.assertRaises. When executing the code below I get the following output:
E
======================================================================
...
-1
votes
1answer
300 views
A problem with assertRaises function in Python
I am trying to run the following test
self.assertRaises(Exception,lambda:
unit_test.testBasic())
where
test.testBasic()
is
class IsPrimeTest(unittest.TestCase):
def ...