Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package main |
||
2 | |||
3 | import ( |
||
4 | "os" |
||
5 | "testing" |
||
6 | |||
7 | "github.com/rfinochi/golang-workshop-todo/pkg/common" |
||
8 | ) |
||
9 | |||
10 | func TestMain(t *testing.T) { |
||
11 | os.Setenv(common.RepositoryEnvVarName, common.RepositoryMemory) |
||
12 | |||
13 | go main() |
||
14 | } |
||
15 |