diff --git a/tests/Loader/DependenciesTest.php b/tests/Loader/DependenciesTest.php index 71204c4..6c0e346 100644 --- a/tests/Loader/DependenciesTest.php +++ b/tests/Loader/DependenciesTest.php @@ -35,12 +35,12 @@ public function testInvokation() subgraph cluster_innmind { label="innmind" URL="https://packagist.org/packages/innmind/" - innmind__immutable [label="immutable@6.0.0"]; - innmind__url [label="url@5.1.0"]; + innmind__immutable [label="immutable@6.3.0"]; + innmind__url [label="url@5.4.0"]; } innmind__url -> innmind__immutable [color="#085cd3", label="~6.0"]; - innmind__immutable [shape="ellipse", width="0.75", height="0.5", color="#a7e599", URL="https://packagist.org/packages/innmind/immutable#6.0.0"]; - innmind__url [shape="ellipse", width="0.75", height="0.5", color="#085cd3", URL="https://packagist.org/packages/innmind/url#5.1.0"]; + innmind__immutable [shape="ellipse", width="0.75", height="0.5", color="#a7e599", URL="https://packagist.org/packages/innmind/immutable#6.3.0"]; + innmind__url [shape="ellipse", width="0.75", height="0.5", color="#085cd3", URL="https://packagist.org/packages/innmind/url#5.4.0"]; } DOT; @@ -98,6 +98,6 @@ public function testCircularDependencyRegression() $packages = $load(PackageModel\Name::of('laravel/browser-kit-testing')); $this->assertInstanceOf(Set::class, $packages); - $this->assertSame(102, $packages->size()); + $this->assertSame(104, $packages->size()); } } diff --git a/tests/Loader/DependentsTest.php b/tests/Loader/DependentsTest.php index 4d14889..b8b04fc 100644 --- a/tests/Loader/DependentsTest.php +++ b/tests/Loader/DependentsTest.php @@ -36,7 +36,7 @@ public function testInvokation() ); $this->assertInstanceOf(Set::class, $packages); - $this->assertSame(61, $packages->size()); + $this->assertSame(60, $packages->size()); $this->assertSame( [ 'innmind/acl', @@ -94,7 +94,6 @@ public function testInvokation() 'innmind/time', 'innmind/ui', 'innmind/url', - 'innmind/url-resolver', 'innmind/url-template', 'innmind/validation', 'innmind/virtual-machine', diff --git a/tests/Loader/PackageTest.php b/tests/Loader/PackageTest.php index e8f80ca..f525030 100644 --- a/tests/Loader/PackageTest.php +++ b/tests/Loader/PackageTest.php @@ -24,7 +24,7 @@ public function testInvokation() $this->assertInstanceOf(Model::class, $package); $this->assertSame('innmind/url', $package->name()->toString()); - $this->assertSame('5.1.0', $package->version()->toString()); + $this->assertSame('5.4.0', $package->version()->toString()); $this->assertSame( 'https://packagist.org/packages/innmind/url', $package->packagist()->toString(), @@ -42,7 +42,7 @@ public function testMostRecentVersionIsLoaded() ); $this->assertInstanceOf(Model::class, $package); - $this->assertSame('7.10.0', $package->version()->toString()); + $this->assertSame('8.0.2', $package->version()->toString()); } public function testReturnNothingWhenThePackageDoesNotExist() diff --git a/tests/Loader/VendorDependenciesTest.php b/tests/Loader/VendorDependenciesTest.php index 11f4f8d..989bdcc 100644 --- a/tests/Loader/VendorDependenciesTest.php +++ b/tests/Loader/VendorDependenciesTest.php @@ -93,7 +93,6 @@ public function testInvokation() 'innmind/server-control', 'innmind/server-status', 'innmind/signals', - 'innmind/socket', 'innmind/specification', 'innmind/stack-trace', 'innmind/static-analysis', @@ -109,10 +108,8 @@ public function testInvokation() 'innmind/warden', 'innmind/xml', 'monolog/monolog', - 'music-companion/apple-music', 'phpunit/php-code-coverage', 'phpunit/php-timer', - 'phpunit/phpunit', 'psr/log', 'ramsey/uuid', 'symfony/browser-kit', diff --git a/tests/Loader/VendorTest.php b/tests/Loader/VendorTest.php index df7b787..2d40a02 100644 --- a/tests/Loader/VendorTest.php +++ b/tests/Loader/VendorTest.php @@ -87,7 +87,6 @@ public function testInvokation() 'innmind/type', 'innmind/ui', 'innmind/url', - 'innmind/url-resolver', 'innmind/url-template', 'innmind/validation', 'innmind/virtual-machine', @@ -112,6 +111,6 @@ public function testMaxOpenedFilesRegression() $vendor = $load(Model\Name::of('symfony')); $this->assertInstanceOf(Model::class, $vendor); - $this->assertSame(350, $vendor->packages()->size()); + $this->assertSame(368, $vendor->packages()->size()); } }