Skip to content

Commit

Permalink
Add tests for helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Oct 18, 2021
1 parent 05a966e commit a58c978
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/HelpersTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace Datalogix\Utils\Tests;

class HelpersTest extends TestCase
{
public function testStatesBR()
{
$this->assertIsArray(statesBR());
$this->assertArrayHasKey('SP', statesBR());
}
}

0 comments on commit a58c978

Please sign in to comment.