Merge pull request #9317 from naderman/test-provider-satisfy-self

Test: Verify require for package provided or replaced by pkg itself is used
main
Jordi Boggiano 4 years ago committed by GitHub
commit 492bece6e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,25 @@
--TEST--
Test that a package requiring something it provides itself, satisfies itself even though a package exists.
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": {
"name": "provided/pkg",
"version": "1.0.0"
}
}
],
"require": {
"provided/pkg": "1.0.0"
},
"provide": {
"provided/pkg": "1.0.0"
}
}
--RUN--
update
--EXPECT--

@ -0,0 +1,25 @@
--TEST--
Test that a package requiring something it replaces itself, satisfies itself even though a package exists.
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": {
"name": "replaced/pkg",
"version": "1.0.0"
}
}
],
"require": {
"replaced/pkg": "1.0.0"
},
"provide": {
"replaced/pkg": "1.0.0"
}
}
--RUN--
update
--EXPECT--
Loading…
Cancel
Save