1
0
mirror of synced 2026-08-04 14:16:55 +00:00

set the dollar amount

This commit is contained in:
Rimian Perkins
2019-10-31 13:29:11 +11:00
parent 1074d84901
commit b0a4665bf4
3 changed files with 23 additions and 7 deletions
+12 -2
View File
@@ -4,7 +4,7 @@ QUnit.module("discourse-patrons:model:plan");
QUnit.test("subscriptionRate", assert => {
const plan = Plan.create({
amount: 2399,
amount: "2399",
currency: 'aud',
interval: 'month'
});
@@ -22,6 +22,16 @@ QUnit.test("amountDollars", assert => {
assert.equal(
plan.get("amountDollars"),
23.99,
"it returns the formatted amount"
"it returns the formatted dollar amount"
);
});
QUnit.test("amount", assert => {
const plan = Plan.create({ amountDollars: "22.12" });
assert.equal(
plan.get("amount"),
2212,
"it returns the cents amount"
);
});