Esempio n. 1
0
	def test_write_file_2(self):
		escribir_archivo("test3.txt", "Ya es viernes")
		self.assertEqual(imprimir_archivo("test3.txt"), "Ya es viernes")
Esempio n. 2
0
	def test_write_file_1(self):
		escribir_archivo("test3.txt", "charmander")
		self.assertEqual(imprimir_archivo("test3.txt"), "charmander")
Esempio n. 3
0
	def test_print_file_2(self):
		escribir_archivo("test2.txt", "")
		self.assertEqual(imprimir_archivo("test2.txt"), "")
Esempio n. 4
0
	def test_print_file_3(self):
		escribir_archivo("test2.txt", "hola\nsalto\ntamal")
		self.assertEqual(imprimir_archivo("test2.txt"), "hola\nsalto\ntamal")	
Esempio n. 5
0
	def test_print_file_1(self):
		escribir_archivo("test2.txt", "hola tacos")
		self.assertEqual(imprimir_archivo("test2.txt"), "hola tacos")