bitcoin: support decimal input

This commit is contained in:
mutantmonkey
2013-11-17 21:36:42 -08:00
parent c3815c9cfe
commit 80613962a1
2 changed files with 8 additions and 1 deletions

View File

@@ -35,6 +35,13 @@ class TestCalc(unittest.TestCase):
out = self.phenny.say.call_args[0][0]
self.assertRegex(out, r'[\d\.]+ BTC')
def test_usd_decimal(self):
input = Mock(group=self.makegroup('1.25', 'USD'))
bitcoin(self.phenny, input)
out = self.phenny.say.call_args[0][0]
self.assertRegex(out, r'[\d\.]+ BTC')
def test_eur(self):
input = Mock(group=self.makegroup('1', 'EUR'))
bitcoin(self.phenny, input)