Exemple #1
0
    def test_with_pkg_resources(self):
        with patch('pkg_resources.iter_entry_points', create=True) as iterep:
            eps = iterep.return_value = [Mock(), Mock()]

            self.assertTrue(list(utils.entrypoints('kombu.test')))
            iterep.assert_called_with('kombu.test')
            eps[0].load.assert_called_with()
            eps[1].load.assert_called_with()
Exemple #2
0
    def test_with_pkg_resources(self):
        with patch('pkg_resources.iter_entry_points', create=True) as iterep:
            eps = iterep.return_value = [Mock(), Mock()]

            self.assertTrue(list(utils.entrypoints('kombu.test')))
            iterep.assert_called_with('kombu.test')
            eps[0].load.assert_called_with()
            eps[1].load.assert_called_with()
Exemple #3
0
 def test_without_pkg_resources(self):
     self.assertListEqual(list(utils.entrypoints('kombu.test')), [])
Exemple #4
0
 def test_without_pkg_resources(self):
     self.assertListEqual(list(utils.entrypoints('kombu.test')), [])