@@ -93,16 +93,16 @@ def _seedConfigExampleMixin(self):
93
93
docutils: svn+http://svn.code.sf.net/p/docutils/code/trunk
94
94
{TMP_DIR}/github_projects/:
95
95
kaptan:
96
- repo : [email protected] :tony/kaptan.git
96
+ url : [email protected] :tony/kaptan.git
97
97
remotes:
98
98
upstream: git+https://github.com/emre/kaptan
99
99
marksteve: git+https://github.com/marksteve/kaptan.git
100
100
{TMP_DIR}:
101
101
.vim:
102
- repo : [email protected] :tony/vim-config.git
102
+ url : [email protected] :tony/vim-config.git
103
103
shell_command_after: ln -sf /home/tony/.vim/.vimrc /home/tony/.vimrc
104
104
.tmux:
105
- repo : [email protected] :tony/tmux-config.git
105
+ url : [email protected] :tony/tmux-config.git
106
106
shell_command_after:
107
107
- ln -sf /home/tony/.tmux/.tmux.conf /home/tony/.tmux.conf
108
108
"""
@@ -116,7 +116,7 @@ def _seedConfigExampleMixin(self):
116
116
},
117
117
'{TMP_DIR}/github_projects/' .format (TMP_DIR = self .TMP_DIR ): {
118
118
'kaptan' : {
119
- 'repo ' :
'[email protected] :tony/kaptan.git' ,
119
+ 'url ' :
'[email protected] :tony/kaptan.git' ,
120
120
'remotes' : {
121
121
'upstream' : 'git+https://github.com/emre/kaptan' ,
122
122
'marksteve' : 'git+https://github.com/marksteve/kaptan.git'
@@ -125,11 +125,11 @@ def _seedConfigExampleMixin(self):
125
125
},
126
126
'{TMP_DIR}' .format (TMP_DIR = self .TMP_DIR ): {
127
127
'.vim' : {
128
- 'repo ' :
'[email protected] :tony/vim-config.git' ,
128
+ 'url ' :
'[email protected] :tony/vim-config.git' ,
129
129
'shell_command_after' : 'ln -sf /home/tony/.vim/.vimrc /home/tony/.vimrc'
130
130
},
131
131
'.tmux' : {
132
- 'repo ' :
'[email protected] :tony/tmux-config.git' ,
132
+ 'url ' :
'[email protected] :tony/tmux-config.git' ,
133
133
'shell_command_after' : ['ln -sf /home/tony/.tmux/.tmux.conf /home/tony/.tmux.conf' ]
134
134
}
135
135
}
@@ -139,14 +139,14 @@ def _seedConfigExampleMixin(self):
139
139
140
140
config_dict_expanded = {
141
141
'{TMP_DIR}/study/' .format (TMP_DIR = self .TMP_DIR ): {
142
- 'linux' : {'repo ' : 'git+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git' , },
143
- 'freebsd' : {'repo ' : 'git+https://github.com/freebsd/freebsd.git' , },
144
- 'sphinx' : {'repo ' : 'hg+https://bitbucket.org/birkenfeld/sphinx' , },
145
- 'docutils' : {'repo ' : 'svn+http://svn.code.sf.net/p/docutils/code/trunk' , },
142
+ 'linux' : {'url ' : 'git+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git' , },
143
+ 'freebsd' : {'url ' : 'git+https://github.com/freebsd/freebsd.git' , },
144
+ 'sphinx' : {'url ' : 'hg+https://bitbucket.org/birkenfeld/sphinx' , },
145
+ 'docutils' : {'url ' : 'svn+http://svn.code.sf.net/p/docutils/code/trunk' , },
146
146
},
147
147
'{TMP_DIR}/github_projects/' .format (TMP_DIR = self .TMP_DIR ): {
148
148
'kaptan' : {
149
- 'repo ' :
'[email protected] :tony/kaptan.git' ,
149
+ 'url ' :
'[email protected] :tony/kaptan.git' ,
150
150
'remotes' : {
151
151
'upstream' : 'git+https://github.com/emre/kaptan' ,
152
152
'marksteve' : 'git+https://github.com/marksteve/kaptan.git'
@@ -155,11 +155,11 @@ def _seedConfigExampleMixin(self):
155
155
},
156
156
'{TMP_DIR}' .format (TMP_DIR = self .TMP_DIR ): {
157
157
'.vim' : {
158
- 'repo ' :
'[email protected] :tony/vim-config.git' ,
158
+ 'url ' :
'[email protected] :tony/vim-config.git' ,
159
159
'shell_command_after' : ['ln -sf /home/tony/.vim/.vimrc /home/tony/.vimrc' ]
160
160
},
161
161
'.tmux' : {
162
- 'repo ' :
'[email protected] :tony/tmux-config.git' ,
162
+ 'url ' :
'[email protected] :tony/tmux-config.git' ,
163
163
'shell_command_after' : ['ln -sf /home/tony/.tmux/.tmux.conf /home/tony/.tmux.conf' ]
164
164
}
165
165
}
@@ -340,13 +340,13 @@ def setUp(self):
340
340
docutils: svn+file://{svn_repo_path}
341
341
{TMP_DIR}/github_projects/deeper/:
342
342
kaptan:
343
- repo : git+file://{git_repo_path}
343
+ url : git+file://{git_repo_path}
344
344
remotes:
345
345
test_remote: git+file://{git_repo_path}
346
346
{TMP_DIR}:
347
347
samereponame: git+file://{git_repo_path}
348
348
.tmux:
349
- repo : git+file://{git_repo_path}
349
+ url : git+file://{git_repo_path}
350
350
"""
351
351
352
352
config_json = """
@@ -357,7 +357,7 @@ def setUp(self):
357
357
},
358
358
"${TMP_DIR}/another_directory/": {
359
359
"anotherkaptan": {
360
- "repo ": "git+file://${git_repo_path}",
360
+ "url ": "git+file://${git_repo_path}",
361
361
"remotes": {
362
362
"test_remote": "git+file://${git_repo_path}"
363
363
}
@@ -366,12 +366,12 @@ def setUp(self):
366
366
"${TMP_DIR}": {
367
367
"samereponame": "git+file://${git_repo_path}",
368
368
".vim": {
369
- "repo ": "git+file://${git_repo_path}"
369
+ "url ": "git+file://${git_repo_path}"
370
370
}
371
371
},
372
372
"${TMP_DIR}/srv/www/": {
373
373
"test": {
374
- "repo ": "git+file://${git_repo_path}"
374
+ "url ": "git+file://${git_repo_path}"
375
375
}
376
376
}
377
377
}
0 commit comments