コード例 #1
0
ファイル: test_short.py プロジェクト: vigneshv59/phenny
 def test_short_none(self):
     input = Mock(group=lambda x: None)
     short(self.phenny, input)
     self.phenny.reply.assert_called_once_with(
         "No URL provided. CAN I HAS?")
コード例 #2
0
ファイル: test_short.py プロジェクト: vigneshv59/phenny
 def test_short(self):
     input = Mock(group=lambda x: 'http://vtluug.org/')
     short(self.phenny, input)
     self.phenny.reply.assert_called_once_with('http://vtlu.ug/bLQYAy')