fix for changes in justinrainbow/json-schema 1.4.4

main
Remi Collet 9 years ago committed by Rob Bast
parent c014e0882f
commit 9b9cbfe111

@ -23,7 +23,7 @@
},
"require": {
"php": ">=5.3.2",
"justinrainbow/json-schema": "~1.4",
"justinrainbow/json-schema": "^1.4.4",
"composer/spdx-licenses": "~1.0",
"seld/jsonlint": "~1.0",
"symfony/console": "~2.5",

@ -23,18 +23,18 @@ class ComposerSchemaTest extends \PHPUnit_Framework_TestCase
{
$json = '{ }';
$this->assertEquals(array(
array('property' => '', 'message' => 'the property name is required'),
array('property' => '', 'message' => 'the property description is required'),
array('property' => 'name', 'message' => 'The property name is required'),
array('property' => 'description', 'message' => 'The property description is required'),
), $this->check($json));
$json = '{ "name": "vendor/package" }';
$this->assertEquals(array(
array('property' => '', 'message' => 'the property description is required'),
array('property' => 'description', 'message' => 'The property description is required'),
), $this->check($json));
$json = '{ "description": "generic description" }';
$this->assertEquals(array(
array('property' => '', 'message' => 'the property name is required'),
array('property' => 'name', 'message' => 'The property name is required'),
), $this->check($json));
}
@ -44,7 +44,7 @@ class ComposerSchemaTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(array(
array(
'property' => 'minimum-stability',
'message' => 'does not match the regex pattern ^dev|alpha|beta|rc|RC|stable$'
'message' => 'Does not match the regex pattern ^dev|alpha|beta|rc|RC|stable$'
),
), $this->check($json), 'empty string');
@ -52,7 +52,7 @@ class ComposerSchemaTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(array(
array(
'property' => 'minimum-stability',
'message' => 'does not match the regex pattern ^dev|alpha|beta|rc|RC|stable$'
'message' => 'Does not match the regex pattern ^dev|alpha|beta|rc|RC|stable$'
),
), $this->check($json), 'dummy');

Loading…
Cancel
Save