12 lines
301 B
PHP
12 lines
301 B
PHP
<?php
|
|
|
|
it('returns price per cell from config', function () {
|
|
$response = $this->getJson('/api/grid/price');
|
|
|
|
$response->assertOk();
|
|
$json = $response->json();
|
|
|
|
expect(array_key_exists('price_per_cell', $json))->toBeTrue();
|
|
expect(is_int($json['price_per_cell']))->toBeTrue();
|
|
});
|