Updated the tests

This commit is contained in:
Graham Campbell
2016-07-13 19:04:58 -07:00
parent ad8f098ec1
commit ef304950bb
2 changed files with 19 additions and 12 deletions
@@ -13,8 +13,6 @@ namespace CachetHQ\Tests\Cachet\Foundation\Providers;
use AltThree\TestBench\ServiceProviderTrait;
use CachetHQ\Cachet\Dates\DateFactory;
use CachetHQ\Cachet\Integrations\Credits;
use CachetHQ\Cachet\Integrations\Releases;
use CachetHQ\Tests\Cachet\AbstractTestCase;
/**
@@ -30,14 +28,4 @@ class AppServiceProviderTest extends AbstractTestCase
{
$this->assertIsInjectable(DateFactory::class);
}
public function testCreditsIsInjectable()
{
$this->assertIsInjectable(Credits::class);
}
public function testReleasesIsInjectable()
{
$this->assertIsInjectable(Releases::class);
}
}