From ed80409f2a904e328d2fcef89296a7e53a15a664 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Tue, 24 Aug 2021 19:56:14 +0200 Subject: add extractNewChunks --- main_test.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 main_test.go (limited to 'main_test.go') diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000..57db053 --- /dev/null +++ b/main_test.go @@ -0,0 +1,20 @@ +package main + +import ( + "log" + "os" + "testing" +) + +func TestMain(m *testing.M) { + setup() + code := m.Run() + shutdown() + os.Exit(code) +} + +func setup() { + log.SetFlags(log.Lshortfile) +} + +func shutdown() {} -- cgit v1.2.3