finally, open up my secret test scripts...

...after getting rid of most of the hardcoding (though not all!)
This commit is contained in:
Sitaram Chamarty 2010-06-12 11:03:53 +05:30
parent ba8094d6f5
commit 0add3d3de7
43 changed files with 1941 additions and 0 deletions

66
t/out/t02-user-groups.1 Normal file
View file

@ -0,0 +1,66 @@
$data_version = '1.5';
%repos = (
'aa' => {
'R' => {
'u1' => 1,
'u2' => 1,
'u3' => 1
},
'W' => {
'u1' => 1,
'u2' => 1,
'u3' => 1
},
'u1' => [
[
2,
'refs/.*',
'RW+'
]
],
'u2' => [
[
3,
'refs/.*',
'RW'
]
],
'u3' => [
[
4,
'refs/.*',
'RW'
]
]
},
'gitolite-admin' => {
'R' => {
'tester' => 1
},
'W' => {
'tester' => 1
},
'tester' => [
[
0,
'refs/.*',
'RW+'
]
]
},
'testing' => {
'@all' => [
[
1,
'refs/.*',
'RW+'
]
],
'R' => {
'@all' => 1
},
'W' => {
'@all' => 1
}
}
);