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

Remove support for old Stripe plans #1832

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Conversation

salbertson
Copy link
Member

No description provided.

end
end

describe "#next_plan" do
it "returns the next plan" do
user = User.new

expect(user.next_plan).to eq StripePlan.new(**StripePlan::PLANS[1])
expect(user.next_plan).to(
eq MeteredStripePlan.new(**MeteredStripePlan::PLANS[1])
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put a comma after the last parameter of a multiline method call.

@@ -10,23 +10,27 @@
it "returns the current plan" do
user = User.new

expect(user.current_plan).to eq StripePlan.new(**StripePlan::PLANS[0])
expect(user.current_plan).to(
eq MeteredStripePlan.new(**MeteredStripePlan::PLANS[0])
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put a comma after the last parameter of a multiline method call.

@salbertson salbertson self-assigned this Feb 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant