(self)
| 372 | |
| 373 | class TestIntent: |
| 374 | def test_in_out(self): |
| 375 | assert str(intent.in_.out) == "intent(in,out)" |
| 376 | assert intent.in_.c.is_intent("c") |
| 377 | assert not intent.in_.c.is_intent_exact("c") |
| 378 | assert intent.in_.c.is_intent_exact("c", "in") |
| 379 | assert intent.in_.c.is_intent_exact("in", "c") |
| 380 | assert not intent.in_.is_intent("c") |
| 381 | |
| 382 | |
| 383 | class TestSharedMemory: |
nothing calls this directly
no test coverage detected