File: setup_test.go

package info (click to toggle)
onedriver 0.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 616 kB
  • sloc: ansic: 132; makefile: 131; sh: 24
file content (12 lines) | stat: -rw-r--r-- 133 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
package ui

import (
	"os"
	"testing"
)

func TestMain(m *testing.M) {
	os.Chdir("../")
	os.Mkdir("mount", 0700)
	os.Exit(m.Run())
}