"""Tests for the project-specific CLI interface for the Garcon.""" from feed_sender import cli def test_run_activity_worker(mocker): """Test running of the worker.""" worker = mocker.patch('garcon.activity.ActivityWorker') cli.garcon('worker', 'proper_new_releases_tracks') assert worker.called