We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 524577c commit 943176eCopy full SHA for 943176e
1 file changed
spec.py
@@ -34,19 +34,6 @@ def main():
34
# Fetch the customers
35
client.new_customer().all()
36
37
- # Create a subscription for a customer
38
- customer = client.new_customer().create()
39
- assert customer.id != "", "The created customer ID should not be empty"
40
-
41
- subscription = client.new_subscription({
42
- "customer_id": customer.id,
43
- "name": "Test subscription",
44
- "amount": "9.99",
45
- "currency": "USD",
46
- "interval": "1d"
47
- }).create()
48
- assert subscription.id != "", "The created subscription ID should not be empty"
49
50
# Expand a customers' project and fetch gateways
51
customer = client.new_customer().create({"expand": ["project"]})
52
assert customer.project != None, "The customer project should be expanded"
0 commit comments