Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix list method to work with params #58

Merged
merged 1 commit into from
Jan 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions spec/stripe/methods/price_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,13 @@ describe Stripe::Price do
prices = Stripe::Price.list
prices.first.id.should eq("price_1IqjDxJN5FrkuvKhKExUK1B2")
end

it "listing prices with params" do
WebMock.stub(:get, "https://api.stripe.com/v1/prices")
.with(body: "currency=AUD")
.to_return(status: 200, body: File.read("spec/support/list_prices.json"), headers: {"Content-Type" => "application/json"})

prices = Stripe::Price.list(currency: "AUD")
prices.first.id.should eq("price_1IqjDxJN5FrkuvKhKExUK1B2")
end
end
2 changes: 1 addition & 1 deletion src/stripe/methods/list.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module StripeMethods
builder = ParamsBuilder.new(io)

{% for x in arguments.map &.var.id %}
builder.add({{x}}, {{x.id}}) unless {{x.id}}.nil?
builder.add({{x.stringify}}, {{x.id}}) unless {{x.id}}.nil?
{% end %}

response = Stripe.client.get("/v1/#{"{{@type.id.gsub(/Stripe::/, "").underscore.gsub(/::/, "/")}}"}s", form: io.to_s)
Expand Down