Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/spec/SchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public function testRead()

public function testNullable()
{
self::markTestIncomplete(
'Test currently fails as it was not run when https://github.com/cebe/php-openapi/pull/132 was merged. '
.'See https://github.com/cebe/php-openapi/issues/142 for status'
);

/** @var $schema Schema */
$schema = Reader::readFromJson('{"type": "string"}', Schema::class);
$this->assertEquals(Type::STRING, $schema->type);
Expand Down