Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
faiberrec committed Feb 1, 2024
1 parent 9495094 commit ede2a7b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Empty file.
13 changes: 13 additions & 0 deletions Tests/Recurly/GeneralLedgerAccount_Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

class Recurly_GeneralLedgerAccountTest extends Recurly_TestCase
{
public functionRecurly_GeneralLedgerAccount() {
$gla = Recurly_GeneralLedgerAccount::get('u90r5deeaxix', $this->client);

$this->assertInstanceOf('Recurly_GeneralLedgerAccount', $gla);
$this->assertEquals('code1', $gla->code);
$this->assertEquals('revenue', $gla->account_type);
$this->assertEquals('string', $gla->description);
}
}

0 comments on commit ede2a7b

Please sign in to comment.