mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 10:54:04 +00:00
24 lines
410 B
PHP
24 lines
410 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Tests;
|
|
|
|
class CommandsTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function migrate_command_works()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
/** @test */
|
|
public function rollback_command_works()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
/** @test */
|
|
public function seed_command_works()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
}
|