Skip to content

Commit 0327c2f

Browse files
authored
Move phpspec to phpunit tests (#204)
Co-authored-by: Marko Ivančić <[email protected]>
1 parent b7adb69 commit 0327c2f

File tree

67 files changed

+2298
-2537
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2298
-2537
lines changed

.github/workflows/test.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
run: |
6464
echo $NO_COVERAGE
6565
./vendor/bin/phpunit $NO_COVERAGE
66-
./vendor/bin/phpspec run
6766
6867
- name: Save coverage data
6968
if: ${{ matrix.php-versions == '7.4' }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/vendor/
33
/.php_cs.cache
44
/composer.lock
5-
/phpspec.yml
65
/phpunit.yml
76
.phpunit.result.cache
87
/.idea/

composer.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@
3636
"web-token/jwt-framework": "^2.1"
3737
},
3838
"require-dev": {
39-
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
4039
"friendsofphp/php-cs-fixer": "^3",
41-
"phpspec/phpspec": "^7.1.0",
4240
"phpunit/php-code-coverage": "^9.0.0",
4341
"phpunit/phpcov": "^8.2.0",
4442
"phpunit/phpunit": "^9.0.0",
@@ -77,8 +75,7 @@
7775
"vendor/bin/phpcs -p"
7876
],
7977
"tests": [
80-
"vendor/bin/phpunit --no-coverage",
81-
"vendor/bin/phpspec run "
78+
"vendor/bin/phpunit --no-coverage"
8279
]
8380
}
8481
}

phpcs.xml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<file>config-templates</file>
1010
<file>hooks</file>
1111
<file>src</file>
12-
<file>spec</file>
1312
<file>tests</file>
1413
<file>public</file>
1514

phpspec.yml.dist

-5
This file was deleted.

spec/Controller/ClientResetSecretControllerSpec.php

-169
This file was deleted.

spec/Controller/ClientShowControllerSpec.php

-115
This file was deleted.

spec/Controller/OAuth2AccessTokenControllerSpec.php

-59
This file was deleted.

0 commit comments

Comments
 (0)