mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-06 09:58:56 +00:00
(rename unit folder back as Unit)
This commit is contained in:
19
tests/Unit/Billing/StripePaymentGatewayTest.php
Normal file
19
tests/Unit/Billing/StripePaymentGatewayTest.php
Normal 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'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user