Skip to content

Commit

Permalink
Test case fix for real DB engines
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Jun 17, 2024
1 parent 138b3af commit f833f47
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Order/Tests/BillpayerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,26 @@

namespace Vanilo\Order\Tests;

use Konekt\Address\Models\Country;
use Vanilo\Order\Models\Billpayer;
use Vanilo\Order\Tests\Dummies\Address;

class BillpayerTest extends TestCase
{
public function setUp(): void
{
parent::setUp();

Country::createOrFirst([
'id' => 'NL',
], [
'name' => 'Netherlands',
'phonecode' => 31,
'is_eu_member' => 1
]);
}


/** @test */
public function it_returns_proper_bool_types_when_the_model_is_empty()
{
Expand Down

0 comments on commit f833f47

Please sign in to comment.