()
| 49 | |
| 50 | |
| 51 | def test_event_emitter(): |
| 52 | event_queue = EventQueue() |
| 53 | watch = ObservedWatch("/foobar", recursive=True) |
| 54 | event_emitter = EventEmitter(event_queue, watch, timeout=1) |
| 55 | event_emitter.queue_event(FileModifiedEvent("/foobar/blah")) |
| 56 | |
| 57 | |
| 58 | def test_event_dispatcher(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…