Skip to content

Commit f483b68

Browse files
committed
adding missing fixture for tests
1 parent 70fcb59 commit f483b68

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/deploy/multirole.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
$env->app(array(
4+
"host1",
5+
"host2",
6+
"host3"
7+
));
8+
9+
$env->role_count = 0;
10+
11+
desc('test multirole support');
12+
task('check', 'app', function ($app) {
13+
info("CHECK", $app->env->role_count);
14+
$app->env->role_count++;
15+
});

0 commit comments

Comments
 (0)