Ejemplo n.º 1
0
 def test_currency(self):
     self.assertNotEqual("$3.50", scramble("$3.50"))
Ejemplo n.º 2
0
 def test_int(self):
     self.assertNotEqual(42, scramble(42))
Ejemplo n.º 3
0
 def test_float(self):
     self.assertNotEqual(3.14, scramble(3.14))
Ejemplo n.º 4
0
 def test_string(self):
     self.assertNotEqual("James", scramble("James"))