Skip to content

Commit ef0512b

Browse files
committed
fix tests
1 parent da0ae56 commit ef0512b

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

Diff for: .styleci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
preset: recommended
2+
3+
disabled:
4+
- concat_without_spaces
5+
6+
enabled:
7+
- concat_with_spaces

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
},
1414
"require-dev": {
1515
"sami/sami": "~3.3",
16-
"phpspec/phpspec": "~3.0",
17-
"henrikbjorn/phpspec-code-coverage": "~3.0"
16+
"phpspec/phpspec": "~2.0 | ~3.0",
17+
"henrikbjorn/phpspec-code-coverage": "~2.0 | ~3.0"
1818
},
1919
"license": "MIT",
2020
"authors": [

Diff for: phpspec.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ suites:
33
namespace: Scriptotek\Alma
44
psr4_prefix: Scriptotek\Alma
55
formatter.name: pretty
6-
extensions:
7-
PhpSpecCodeCoverage\CodeCoverageExtension:
8-
format:
9-
- html
10-
- clover
11-
output:
12-
html: coverage
13-
clover: coverage.xml
6+
# extensions:
7+
# PhpSpecCodeCoverage\CodeCoverageExtension:
8+
# format:
9+
# - html
10+
# - clover
11+
# output:
12+
# html: coverage
13+
# clover: coverage.xml

Diff for: spec/BibsSpec.php

+2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ public function it_returns_null_given_unknown_isbn(AlmaClient $almaClient, SruCl
6969
$bib->shouldBe(null);
7070
}
7171

72+
/*
7273
public function it_returns_a_bib_object_given_a_barcode(AlmaClient $almaClient)
7374
{
7475
}
76+
*/
7577
}

0 commit comments

Comments
 (0)