Ejemplo n.º 1
0
 def test_no_change(self, driver):
     encode = MagicEncode(driver, encoding='CP858')
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\xd5 ist teuro.'
Ejemplo n.º 2
0
 def test_init_from_none(self, driver):
     encode = MagicEncode(driver, encoding=None)
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\x1bt\x13\xd5 ist teuro.'
Ejemplo n.º 3
0
 def test_change_from_another(self, driver):
     encode = MagicEncode(driver, encoding='CP437')
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\x1bt\x13\xd5 ist teuro.'
 def test_no_change(self, driver):
     encode = MagicEncode(driver, encoding="CP858")
     encode.write_with_encoding("CP858", "€ ist teuro.")
     assert driver.output == b"\xd5 ist teuro."
 def test_change_from_another(self, driver):
     encode = MagicEncode(driver, encoding="CP437")
     encode.write_with_encoding("CP858", "€ ist teuro.")
     assert driver.output == b"\x1bt\x13\xd5 ist teuro."
Ejemplo n.º 6
0
 def test_no_change(self, driver):
     encode = MagicEncode(driver, encoding='CP858')
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\xd5 ist teuro.'
Ejemplo n.º 7
0
 def test_change_from_another(self, driver):
     encode = MagicEncode(driver, encoding='CP437')
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\x1bt\x13\xd5 ist teuro.'
Ejemplo n.º 8
0
 def test_init_from_none(self, driver):
     encode = MagicEncode(driver, encoding=None)
     encode.write_with_encoding('CP858', '€ ist teuro.')
     assert driver.output == b'\x1bt\x13\xd5 ist teuro.'