()
| 32 | |
| 33 | @pytest.fixture(scope="module") |
| 34 | def location(): |
| 35 | return Location( |
| 36 | latitude=LocationTestBase.latitude, |
| 37 | longitude=LocationTestBase.longitude, |
| 38 | horizontal_accuracy=LocationTestBase.horizontal_accuracy, |
| 39 | live_period=LocationTestBase.live_period, |
| 40 | heading=LocationTestBase.live_period, |
| 41 | proximity_alert_radius=LocationTestBase.proximity_alert_radius, |
| 42 | ) |
| 43 | |
| 44 | |
| 45 | class LocationTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…