def test_get_all(self):
     with override_settings(CUSTOM_UCR_REPORTS=[self.get_path('custom_report_config', 'json')]):
         all = list(CustomReportConfiguration.all())
         self.assertEqual(2, len(all))
         example, dimagi = all
         self.assertEqual('example', example.domain)
         self.assertEqual('dimagi', dimagi.domain)
         for config in all:
             self.assertEqual('Custom Title', config.title)