Ejemplo n.º 1
0
 def test_sentence_how_alive(self):
     hex_string = translate_to_hex("HOW ALIVE?")
     self.assertEqual("484f5720414c4956453f", hex_string)
Ejemplo n.º 2
0
 def test_no_0x_in_string(self):
     hex_string = translate_to_hex("test")
     self.assertNotIn("0x", hex_string)
Ejemplo n.º 3
0
 def test_word_status(self):
     hex_string = translate_to_hex("STATUS")
     self.assertEqual("535441545553", hex_string)
Ejemplo n.º 4
0
 def test_word_hi(self):
     hex_string = translate_to_hex("hi")
     self.assertEqual("6869", hex_string)
Ejemplo n.º 5
0
 def test_space(self):
     hex_string = translate_to_hex(" ")
     self.assertEqual("20", hex_string)
Ejemplo n.º 6
0
 def test_single_letter_c(self):
     hex_string = translate_to_hex("c")
     self.assertEqual("63", hex_string)
Ejemplo n.º 7
0
 def test_single_letter_B(self):
     hex_string = translate_to_hex("B")
     self.assertEqual("42", hex_string)