PluginDownloader: add mtughan-weather and SpiderDave repositories

This commit is contained in:
Valentin Lorentz 2011-04-28 14:47:25 +02:00
parent 8fe3e77428
commit 6e00168662
2 changed files with 18 additions and 0 deletions

View File

@ -201,6 +201,15 @@ repositories = {
'supybot-bitcoin-'
'marketmonitor',
),
'mtughan-weather': GithubRepository(
'mtughan',
'Supybot-Weather',
),
'SpiderDave': GithubRepository(
'SpiderDave',
'spidey-supybot-plugins',
'Plugins',
),
}
class PluginDownloader(callbacks.Plugin):

View File

@ -99,5 +99,14 @@ class PluginDownloaderTestCase(PluginTestCase):
self.assertNotError('plugindownloader install nanotube-bitcoin GPG')
self._testPluginInstalled('GPG')
def testInstallMtughanWeather(self):
self.assertNotError('plugindownloader install mtughan-weather '
'WunderWeather')
self._testPluginInstalled('WunderWeather')
def testInstallSpiderDave(self):
self.assertNotError('plugindownloader install SpiderDave Pastebin')
self._testPluginInstalled('Pastebin')
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: