-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitRunner_test.go
57 lines (37 loc) · 1.21 KB
/
gitRunner_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetTargetDir(t *testing.T) {
t.Run("ReturnsEstafetteWorkIfSubdirIsDot", func(t *testing.T) {
// act
path := getTargetDir(".")
assert.Equal(t, "/estafette-work", path)
})
t.Run("ReturnsEstafetteWorkSubdirIfSubdirIsSingleWord", func(t *testing.T) {
// act
path := getTargetDir("scripts")
assert.Equal(t, "/estafette-work/scripts", path)
})
t.Run("ReturnsEstafetteWorkSubdirIfSubdirIsDotSlashSingleWord", func(t *testing.T) {
// act
path := getTargetDir("./scripts")
assert.Equal(t, "/estafette-work/scripts", path)
})
t.Run("ReturnsEstafetteWorkSubdirIfSubdirIsMultipleWordsSeparatedBySlash", func(t *testing.T) {
// act
path := getTargetDir("scripts/sub")
assert.Equal(t, "/estafette-work/scripts/sub", path)
})
t.Run("ReturnsEstafetteWorkSubdirIfSubdirIsDotSlashMultipleWordsSeparatedBySlash", func(t *testing.T) {
// act
path := getTargetDir("./scripts/sub")
assert.Equal(t, "/estafette-work/scripts/sub", path)
})
t.Run("ReturnsEstafetteWorkSubdirIfSubdirIsAbsolutePath", func(t *testing.T) {
// act
path := getTargetDir("/scripts")
assert.Equal(t, "/estafette-work/scripts", path)
})
}