def tracking_screen(request, app): """Return a plain TrackingScreen instance.""" return screens.TrackingScreen(app)
def test_init(self, app): """Make sure instance matches expectation.""" result = screens.TrackingScreen(app) assert isinstance(result, screens.TrackingScreen) assert len(result.get_children()) == 2