add randomreddit test

master
mutantmonkey 2012-06-02 15:24:36 -07:00
parent 3dc958283b
commit b87e62dd47
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
"""
test_randomredit.py - tests for the randomreddit module
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
import re
import unittest
from mock import MagicMock, Mock
from modules.randomreddit import randomreddit
class TestRandomreddit(unittest.TestCase):
def setUp(self):
self.phenny = MagicMock()
def test_randomreddit(self):
input = Mock(group=lambda x: 'vtluug')
randomreddit(self.phenny, input)
out = self.phenny.reply.call_args[0][0]
m = re.match('^http://.+? \(.*\)$',
out, flags=re.UNICODE)
self.assertTrue(m)