"""Tests for Proper exceptions.""" from feed_sender.flows.proper_new_releases_tracks import exceptions def test_init(): """Test TransformException construction.""" e = exceptions.TransformException('Uh oh') assert e.msg == 'Uh oh'