This commit is contained in:
jubianchi 2016-08-05 20:51:29 +02:00
parent 456fbdc101
commit b4da68cf7b
No known key found for this signature in database
GPG key ID: 5D9C896D2AA9E390
5 changed files with 14 additions and 11 deletions

View file

@ -7,5 +7,6 @@ $finder = Symfony\CS\Finder\DefaultFinder::create()
;
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
->finder($finder)
;

View file

@ -17,7 +17,7 @@ unit: vendor
cs:
$(PHP) bin/php-cs-fixer fix --dry-run
fix-cs
fix-cs:
$(PHP) bin/php-cs-fixer fix
clean:

View file

@ -1,6 +1,7 @@
# `docker-compose-viz`
[![Build Status](https://travis-ci.org/pmsipilot/docker-compose-viz.svg?branch=master)](https://travis-ci.org/pmsipilot/docker-compose-viz)
[![Build Status](https://travis-ci.org/pmsipilot/docker-compose-viz.svg?branch=master)](https://travis-ci.org/pmsipilot/docker-compose-viz) [![StyleCI](https://styleci.io/repos/65026022/shield)](https://styleci.io/repos/65026022)
## How to use

View file

@ -1,6 +1,7 @@
#!/usr/bin/env php
<?php
function resolve(array $components) : string {
function resolve(array $components) : string
{
return implode(DIRECTORY_SEPARATOR, $components);
}
@ -9,7 +10,7 @@ require_once resolve(
__DIR__,
'..',
'vendor',
'autoload.php'
'autoload.php',
]
);
@ -18,7 +19,7 @@ require_once resolve(
__DIR__,
'..',
'src',
'application.php'
'application.php',
]
);
?>

View file

@ -2,19 +2,19 @@
use function PMSIpilot\DockerComposeViz\fetchNetworks;
require_once __DIR__ . '/../vendor/autoload.php';
require_once __DIR__.'/../vendor/autoload.php';
describe('Fetching networks', function() {
describe('from a version 1 configuration', function() {
it('should always return an empty array', function() {
describe('Fetching networks', function () {
describe('from a version 1 configuration', function () {
it('should always return an empty array', function () {
$configuration = ['networks' => ['image' => 'bar']];
expect(fetchNetworks($configuration))->toBe([]);
});
});
describe('from a version 2 configuration', function() {
it('should fetch networks from the dedicated section', function() {
describe('from a version 2 configuration', function () {
it('should fetch networks from the dedicated section', function () {
$configuration = ['version' => 2, 'networks' => ['foo' => [], 'bar' => []]];
expect(fetchNetworks($configuration))->toBe($configuration['networks']);