Skip to content

Commit

Permalink
BUGFIX: Required 'ext-exif' again and added zero test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ComiR committed Mar 16, 2017
1 parent 0d58fad commit 5be9374
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/Unit/Domain/Extractor/Converter/NumberConverterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ public function rationalDataProvider()
'rational' => '-24/10',
'expected' => -2.4,
],
'zero' => [
'rational' => '0/0',
'expected' => 0.0,
],
'nonRational' => [
'rational' => 'twenty-four',
'expected' => 0.0,
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"type": "neos-package",
"license": "MIT",
"require": {
"ext-exif": "*",
"neos/flow": "^4.0",
"neos/media": "^3.0",
"neos/metadata": "^2.0",
Expand Down

0 comments on commit 5be9374

Please sign in to comment.