aboutsummaryrefslogtreecommitdiff
path: root/main_test.go
blob: 27a3d656731e5671a30e5003c6874a32db2c2469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main

import (
	"log"
	"os"
	"testing"

	"github.com/n-peugnet/dna-backup/logger"
)

func TestMain(m *testing.M) {
	setup()
	code := m.Run()
	shutdown()
	os.Exit(code)
}

func setup() {
	logger.SetFlags(log.Lshortfile)
}

func shutdown() {}