(self)
| 65 | assert msg.importance is ImportanceLevel.Normal |
| 66 | |
| 67 | def test_changes(self): |
| 68 | msg = message() |
| 69 | msg.is_read = True |
| 70 | msg.subject = "Changed" |
| 71 | msg.sender = "alice@example.com" |
| 72 | msg.categories = ["Test"] |
| 73 | msg.add_category("Test") |
| 74 | msg.importance = "normal" |
| 75 | msg.is_read_receipt_requested = True |
| 76 | |
| 77 | def test_body(self): |
| 78 | msg = message( |
nothing calls this directly
no test coverage detected