-
Notifications
You must be signed in to change notification settings - Fork 1
/
stripe.asd
76 lines (75 loc) · 1.99 KB
/
stripe.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
(defsystem #:stripe
:description "A client for the Stripe payment API."
:author ("Michael Fiano <[email protected]>")
:maintainer "boogsbunny"
:license "MIT"
:homepage "https://github.com/boogsbunny/stripe"
:encoding :utf-8
:depends-on (#:alexandria
#:com.inuoe.jzon
#:dexador
#:golden-utils
#:ironclad
#:local-time)
:pathname "src"
:serial t
:components
((:file "package")
(:file "common")
(:file "error")
(:file "object")
(:file "query")
(:file "balance")
(:file "balance-transaction")
(:file "card")
(:file "charge")
(:file "coupon")
(:file "credit-note")
(:file "customer")
(:file "customer-balance-transaction")
(:file "customer-tax-id")
(:file "discount")
(:file "invoice")
(:file "invoice-item")
(:file "payout")
(:file "plan")
(:file "product")
(:file "refund")
(:file "session")
(:file "subscription")
(:file "subscription-item")
(:file "token")
(:file "webhook"))
:in-order-to ((test-op (test-op :stripe/tests))))
(defsystem #:stripe/tests
:description "A test suite for the Stripe payment API client."
:license "MIT"
:homepage "https://github.com/atlas-engineer/stripe"
:encoding :utf-8
:depends-on (#:fiveam
#:stripe)
:pathname "tests"
:serial t
:components
((:file "package")
(:file "common")
(:file "balance-tests")
(:file "balance-transaction-tests")
(:file "card-tests")
(:file "charge-tests")
(:file "coupon-tests")
(:file "credit-note-tests")
(:file "customer-balance-transaction-tests")
(:file "invoice-tests")
(:file "invoice-item-tests")
(:file "payout-tests")
(:file "plan-tests")
(:file "product-tests")
(:file "refund-tests")
(:file "session-tests")
(:file "subscription-tests")
(:file "subscription-item-tests")
(:file "token-tests")
(:file "webhook-tests")
(:file "run-tests"))
:perform (test-op (o c) (symbol-call ':stripe/tests '#:run)))