diff --git a/plugins/PluginDownloader/plugin.py b/plugins/PluginDownloader/plugin.py index 5f710ed49..6aa8eac1e 100644 --- a/plugins/PluginDownloader/plugin.py +++ b/plugins/PluginDownloader/plugin.py @@ -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): diff --git a/plugins/PluginDownloader/test.py b/plugins/PluginDownloader/test.py index 62ed49f20..91da9a362 100644 --- a/plugins/PluginDownloader/test.py +++ b/plugins/PluginDownloader/test.py @@ -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: