graphql-php/tests/Validator/ValidationTest.php
2017-07-03 18:04:32 +07:00

27 lines
496 B
PHP

<?php
namespace GraphQL\Tests\Validator;
class ValidationTest extends TestCase
{
// Validate: Supports full validation
/**
* @it validates queries
*/
public function testValidatesQueries()
{
$this->expectPassesCompleteValidation('
query {
catOrDog {
... on Cat {
furColor
}
... on Dog {
isHousetrained
}
}
}
');
}
}