| Conditions | 3 |
| Total Lines | 9 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import os |
||
| 13 | @pytest.mark.skipif(is_travis, reason="We're running this on Travis") |
||
| 14 | @pytest.mark.skipif(is_mac, reason="This doesn't work on Macs yet") |
||
| 15 | def test_run_tracking(): |
||
| 16 | tf = tempfile.NamedTemporaryFile(suffix='.csv') |
||
| 17 | ij.track('http://fiji.sc/samples/FakeTracks.tif', tf.name) |
||
| 18 | assert op.exists(tf.name) |
||
| 19 | |||
| 20 | df = csv_to_pd(tf.name) |
||
| 21 | assert df.shape == (84, 8) |
||
| 22 |