add Docker run command parse test

This commit is contained in:
Andras Bacsai
2024-02-09 13:38:17 +01:00
parent 29676ffb22
commit 798d747164
7 changed files with 13 additions and 39 deletions

View File

@@ -0,0 +1,9 @@
<?php
it('ConvertDockerTunCommand', function () {
$input = '--cap-add=NET_ADMIN --cap-add=NET_RAW --cap-add SYS_ADMIN';
$output = convert_docker_run_to_compose($input);
expect($output)->toBe([
'cap_add' => ['NET_ADMIN', 'NET_RAW', 'SYS_ADMIN'],
])->ray();
});