Skip to content

Commit

Permalink
Revert "DEP Use PHPUnit 11" (#85)
Browse files Browse the repository at this point in the history
This reverts commit 07e9901.
  • Loading branch information
GuySartorelli authored Oct 1, 2024
1 parent f771e26 commit 1ffbd53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"require-dev": {
"composer/composer": "^2",
"phpunit/phpunit": "^11.3",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7"
}
}
7 changes: 4 additions & 3 deletions tests/Methods/LibraryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@

use PHPUnit\Framework\TestCase;
use SilverStripe\VendorPlugin\Library;
use PHPUnit\Framework\Attributes\DataProvider;

class LibraryTest extends TestCase
{
#[DataProvider('resourcesDirProvider')]
/**
* @dataProvider resourcesDirProvider
*/
public function testResourcesDir($expected, $projectPath)
{
$path = __DIR__ . '/../fixtures/projects/' . $projectPath;
$lib = new Library($path, 'vendor/silverstripe/skynet');
$this->assertEquals($expected, $lib->getResourcesDir());
}

public static function resourcesDirProvider()
public function resourcesDirProvider()
{
return [
['_resources', 'ss43'],
Expand Down

0 comments on commit 1ffbd53

Please sign in to comment.