Skip to content

Commit 13291eb

Browse files
committed
test
1 parent 85284bd commit 13291eb

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.gitattributes

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
/.github export-ignore
66
/.gitattributes export-ignore
77
/.gitignore export-ignore
8-
/phpunit.xml.dist export-ignore
9-
/tests export-ignore
108
/.editorconfig export-ignore
11-
/.php_cs.dist export-ignore
12-
/psalm.xml export-ignore
13-
/psalm.xml.dist export-ignore
14-
/testbench.yaml export-ignore
9+
/tests export-ignore
10+
/phpunit.xml.dist export-ignore
11+
/.php-cs-fixer.dist export-ignore
12+
/phpstan.neon.dist export-ignore

tests/SkeletonTest.php renamed to tests/CsFixerTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
namespace Descom\Skeleton\Test;
44

5+
use Descom\Common\CsFixer;
56
use PHPUnit\Framework\TestCase;
67

7-
class SkeletonTest extends TestCase
8+
class CsFixerTest extends TestCase
89
{
910
public function testExample()
1011
{
11-
$this->assertTrue(true);
12+
$this->assertIsArray(CsFixer::rules());
1213
}
1314
}

0 commit comments

Comments
 (0)