Skip to content

Commit 80e3c69

Browse files
committed
Behat removed and first tests using PHPUnit for bundles
1 parent 876c49f commit 80e3c69

36 files changed

+540
-589
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
* text=auto
22

3-
/features export-ignore
43
/performance export-ignore
5-
/tests export-ignore
64
/.gitattributes export-ignore
75
/.gitignore export-ignore
86
/.scrutinizer.yml export-ignore
97
/.travis.yml export-ignore
10-
/behat.yml export-ignore
118
/phpbench.json export-ignore
129
/phpunit.xml.dist export-ignore
1310
/README.md export-ignore

.scrutinizer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ tools:
1111
php_sim: false
1212
php_cpd: true
1313
php_pdepend:
14-
excluded_dirs: ["vendor/*", "doc/*", "performance/*", "tests/*", "*Tests/*"]
14+
excluded_dirs: ["vendor/*", "performance/*", "*Tests/*"]
1515
filter:
16-
excluded_paths: ["vendor/*", "doc/*", "performance/*", "tests/*", "*Tests/*"]
16+
excluded_paths: ["vendor/*", "performance/*", "*Tests/*"]
1717
build_failure_conditions:
1818
- 'elements.rating(<= D).exists' # No classes/methods with a rating of D or worse
1919
- 'elements.rating(<= D).new.exists' # No new classes/methods with a rating of D or worse

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,5 @@ before_script:
2323
- if [[ !$deps ]]; then composer install --no-interaction ; fi
2424
script:
2525
- "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
26-
- "./vendor/bin/behat"
2726
after_success:
2827
- vendor/bin/coveralls --no-interaction

behat.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

composer.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@
4242
},
4343
"require-dev": {
4444
"ext-curl": "*",
45-
"behat/behat": "^3.1",
46-
"behat/mink": "^1.5",
47-
"behat/mink-browserkit-driver": "^1.1",
48-
"behat/mink-extension": "^2.0",
49-
"behat/symfony2-extension": "^2.1",
5045
"bjeavons/zxcvbn-php": "^0.3.0",
5146
"php-http/httplug": "^1.1",
5247
"php-http/httplug-bundle": "^1.7",
@@ -55,7 +50,9 @@
5550
"phpbench/phpbench": "^0.13.0",
5651
"phpunit/phpunit": "^6.0",
5752
"satooshi/php-coveralls": "^1.0",
58-
"symfony/finder": "^3.3"
53+
"symfony/finder": "^3.3",
54+
"symfony/yaml": "^3.3",
55+
"symfony/browser-kit": "^3.3"
5956
},
6057
"replace": {
6158
"web-token/jwt-core": "self.version",

features/Command.feature

Lines changed: 0 additions & 65 deletions
This file was deleted.

features/Compression.feature

Lines changed: 0 additions & 6 deletions
This file was deleted.

features/JKU.feature

Lines changed: 0 additions & 7 deletions
This file was deleted.

features/JWKSetController.feature

Lines changed: 0 additions & 7 deletions
This file was deleted.

features/X5U.feature

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)