(rename unit folder back as Unit)

This commit is contained in:
Adam Wathan
2017-05-02 15:42:41 -04:00
parent 1d8dfb6cf2
commit 0bcdd67a81
10 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Tests\Unit\Billing;
use Tests\TestCase;
use App\Billing\StripePaymentGateway;
/**
* @group integration
*/
class StripePaymentGatewayTest extends TestCase
{
use PaymentGatewayContractTests;
protected function getPaymentGateway()
{
return new StripePaymentGateway(config('services.stripe.secret'));
}
}