Skip to content

Commit

Permalink
feat(python-sdk): MAX-35 - test invoices
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianMiklaszewskiBldr committed Feb 2, 2024
1 parent 8a15d64 commit 34ca8b2
Show file tree
Hide file tree
Showing 2 changed files with 471 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

from advancedbilling.advanced_billing_client import AdvancedBillingClient
from advancedbilling.controllers.components_controller import ComponentsController
from advancedbilling.controllers.coupons_controller import CouponsController
from advancedbilling.controllers.custom_fields_controller import CustomFieldsController
from advancedbilling.controllers.customers_controller import CustomersController
from advancedbilling.controllers.invoices_controller import InvoicesController
from advancedbilling.controllers.payment_profiles_controller import PaymentProfilesController
from advancedbilling.controllers.product_families_controller import ProductFamiliesController
from advancedbilling.controllers.products_controller import ProductsController
Expand Down Expand Up @@ -47,3 +49,9 @@ def get_subscription_components_controller(self) -> SubscriptionComponentsContro

def get_custom_fields_controller(self) -> CustomFieldsController:
return self.client.custom_fields

def get_invoices_controller(self) -> InvoicesController:
return self.client.invoices

def get_coupons_controller(self) -> CouponsController:
return self.client.coupons
Loading

0 comments on commit 34ca8b2

Please sign in to comment.