def test_ping_entry(self):
     pinger = DirectoryPinger('http://localhost', [self.entry])
     self.assertEqual(
         pinger.ping_entry(self.entry),
         {'message': 'http://localhost is an invalid directory.',
          'flerror': True})
     self.assertEqual(pinger.results, [])
Beispiel #2
0
class DirectoryPingerTestCase(TestCase):
    """Test cases for DirectoryPinger"""
    def setUp(self):
        params = {'title': 'My entry',
                  'content': 'My content',
                  'tags': 'zinnia, test',
                  'slug': 'my-entry'}
        self.entry = Entry.objects.create(**params)
        self.pinger = DirectoryPinger('http://localhost', [self.entry],
                                      start_now=False)

    def test_ping_entry(self):
        self.assertEquals(
            self.pinger.ping_entry(self.entry),
            {'message': 'http://localhost is an invalid directory.',
             'flerror': True})