Beispiel #1
0
    def test_borrar(self):

        print("test_borrar")
        SQlite.BorrarVideo(self.video2.Id)
        actual = SQlite.MostrarVideo(self.video2.Id)
        expected = []
        self.assertListEqual(expected, actual)
Beispiel #2
0
def BorrarVideo(id):
    borrar = SQlite.BorrarVideo(id)
    return borrar