I'm writing unit tests for my module and I'd like to do this simple check:
self.assertIs(self.board, wi.board_id)
but I get the aforementioned error. Though, self.assertEqual() works. Is it safe to use assertEqual() for such a test?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I'm writing unit tests for my module and I'd like to do this simple check:
self.assertIs(self.board, wi.board_id)
but I get the aforementioned error. Though, self.assertEqual() works. Is it safe to use assertEqual() for such a test?
assertEqual(a, b) a == b
assertIs(a, b) a is b
So yes, It is safe use assertEquals. If hoy take a look to Odoo test, equals is used a lot.
| 관련 게시물 | 답글 | 화면 | 활동 | |
|---|---|---|---|---|
|
0
10월 23
|
1837 | |||
|
0
10월 23
|
3000 | |||
|
0
11월 20
|
3574 | |||
|
2
10월 23
|
3315 | |||
|
0
6월 23
|
4414 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.