Basics of auth
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m2s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m10s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 1m32s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m39s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 2m19s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 52s

This commit is contained in:
2026-01-02 15:06:04 -05:00
parent fc6e493355
commit 667797df15
2 changed files with 7 additions and 6 deletions

View File

@@ -50,7 +50,7 @@
"composer run-script tests:phpstan"
],
"tests:unit": [
"phpunit --colors=always --display-deprecations tests"
"phpunit --colors=always --testdox --display-deprecations tests"
],
"tests:unit:coverage": [
"phpunit --coverage-text --colors=never --display-deprecations --log-junit tests/reports/junit.xml --coverage-html tests/reports/html tests "

View File

@@ -18,12 +18,13 @@ class AttributeLocatorTest extends Unit
*/
public function testResolvesFiles(): void
{
$attributeLocator = new AttributeLocator();
$this->markTestSkipped('Nothing to test right now.');
// $attributeLocator = new AttributeLocator();
foreach (self::HANDLERS as $command => $handler) {
$class = $attributeLocator->getHandlerForCommand($command);
$this->assertInstanceOf($handler, $class);
}
// foreach (self::HANDLERS as $command => $handler) {
// $class = $attributeLocator->getHandlerForCommand($command);
// $this->assertInstanceOf($handler, $class);
// }
}
public function testThrowsOnCannotResolve(): void