Test job submission and result retrieval
()
| 44 | |
| 45 | |
| 46 | def test_result(): |
| 47 | """Test job submission and result retrieval""" |
| 48 | jobs = bg.BackgroundJobManager() |
| 49 | j = jobs.new(sleeper) |
| 50 | j.join() |
| 51 | assert j.result["interval"] == t_short |
| 52 | |
| 53 | |
| 54 | def test_flush(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…