def test_currency_type_returns_valid(self):
     assert valid_currency('usd') is True
 def test_currency_type_raises_invalid(self):
     assert valid_currency('not-a-code') is not True