main_test.go 256 B

12345678910111213
  1. package db
  2. import (
  3. "context"
  4. "testing"
  5. )
  6. func TestDbIntegration(t *testing.T) {
  7. conn := PrepareDatabaseForTesting()
  8. defer conn.Conn().Close(context.Background())
  9. t.Run("Scanning and inserting songs", IntegrationTestInsertMusicIntoDatabase)
  10. }