-
Notifications
You must be signed in to change notification settings - Fork 17
/
test_git.py
109 lines (81 loc) · 1.75 KB
/
test_git.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from custom_git import for_each_ref, cherry, show
from custom_git import log
def test_for_each_ref_normal():
assert for_each_ref() == ["git", "for-each-ref"]
def test_for_each_ref_ref_glob():
assert for_each_ref('refs/heads/*') == [
"git",
"for-each-ref",
"refs/heads/*"
]
def test_for_each_ref_format():
assert for_each_ref(format='%(authordate:unix)') == [
"git",
"for-each-ref",
"--format=%(authordate:unix)"
]
def test_for_each_ref_sort():
assert for_each_ref(sort='v:refname') == [
"git",
"for-each-ref",
"--sort=v:refname"
]
def test_show():
assert show() == [
"git",
"show"
]
def test_show_objects():
assert show(objects=('master', 'feature')) == [
"git",
"show",
"master",
"feature"
]
def test_show_no_diff():
assert show(diff=False) == [
"git",
"show",
"-s"
]
def test_show_format():
assert show(format="%at") == [
"git",
"show",
"--format=%at"
]
def test_log_normal():
assert log() == [
"git",
"log"
]
def test_log_selector():
assert log('selector') == [
"git",
"log",
"selector"
]
def test_log_format():
assert log(format='%a') == [
"git",
"log",
"--format=%a"
]
def test_log_limit():
assert log(limit=10) == [
"git",
"log",
"-10"
]
def test_cherry():
assert cherry() == [
"git",
"cherry"
]
def test_cherry_upstream_and_head_arguments():
assert cherry(upstream="<upstream>", head="<head>") == [
"git",
"cherry",
"<upstream>",
"<head>"
]