def test_crear_DB(self): BDFILE = 'DB.sqlite' TABLA = 'megatabla' CAMPO = 'texto_random' TIPO = 'VARCHAR(200)' utils.crear_BD(BDFILE, TABLA, CAMPO, TIPO) self.assertTrue(os.path.isfile(BDFILE))
def test_llenar_v1(self): os.remove(BDFILE) utils.crear_BD(BDFILE, TABLA, CAMPOS, TIPOS) utils.llenar_BD_v1(BDFILE, ARCHIVODATOS, TABLA, CAMPOS) registros = utils.leer_BD(BDFILE, TABLA) self.assertTrue(registros == DATOS_LLENADO_BD_v1)
def crearBD(): print("Creando BD") utils.crear_BD(BDFILE, TABLA, CAMPO, TIPO) print("Base de datos Creada") lbl5.configure(text="Base de Datos Creada!!")
def test_crear_DB(self): utils.crear_BD(BDFILE, TABLA, CAMPOS, TIPOS) self.assertTrue(os.path.isfile(BDFILE))
def crearBD(): print("Creando BD") utils.crear_BD(BDFILE, TABLA, CAMPOS, TIPOS) print("Base de datos Creada") tkMessageBox.showinfo("Exito", "Base de datos creada con Exito")