Stub some tests

This commit is contained in:
Oliver Davies 2019-05-20 22:28:21 +01:00
parent 8e7487c24e
commit 299bb34988

View file

@ -0,0 +1,20 @@
<?php
namespace App\Tests\Sponsors;
use PHPUnit\Framework\TestCase;
class SponsorsTest extends TestCase
{
/** @test */
public function get_sponsors_by_level()
{
$this->markTestIncomplete();
}
/** @test */
public function only_confirmed_sponsors_are_returned()
{
$this->markTestIncomplete();
}
}