DEV: Fix imports (#113)
This commit is contained in:
@@ -1,35 +1,40 @@
|
||||
import { module, test } from "qunit";
|
||||
import Plan from "discourse/plugins/discourse-subscriptions/discourse/models/plan";
|
||||
|
||||
QUnit.module("discourse-patrons:model:plan");
|
||||
module("discourse-patrons:model:plan", function () {
|
||||
test("subscriptionRate", function (assert) {
|
||||
const plan = Plan.create({
|
||||
unit_amount: "2399",
|
||||
currency: "aud",
|
||||
recurring: {
|
||||
interval: "month",
|
||||
},
|
||||
});
|
||||
|
||||
QUnit.test("subscriptionRate", (assert) => {
|
||||
const plan = Plan.create({
|
||||
unit_amount: "2399",
|
||||
currency: "aud",
|
||||
recurring: {
|
||||
interval: "month",
|
||||
},
|
||||
assert.strictEqual(
|
||||
plan.get("subscriptionRate"),
|
||||
"23.99 AUD / month",
|
||||
"it returns the formatted subscription rate"
|
||||
);
|
||||
});
|
||||
|
||||
assert.equal(
|
||||
plan.get("subscriptionRate"),
|
||||
"23.99 AUD / month",
|
||||
"it returns the formatted subscription rate"
|
||||
);
|
||||
});
|
||||
|
||||
QUnit.test("amountDollars", (assert) => {
|
||||
const plan = Plan.create({ unit_amount: 2399 });
|
||||
|
||||
assert.equal(
|
||||
plan.get("amountDollars"),
|
||||
23.99,
|
||||
"it returns the formatted dollar amount"
|
||||
);
|
||||
});
|
||||
|
||||
QUnit.test("amount", (assert) => {
|
||||
const plan = Plan.create({ amountDollars: "22.12" });
|
||||
|
||||
assert.equal(plan.get("unit_amount"), 2212, "it returns the cents amount");
|
||||
test("amountDollars", function (assert) {
|
||||
const plan = Plan.create({ unit_amount: 2399 });
|
||||
|
||||
assert.strictEqual(
|
||||
plan.get("amountDollars"),
|
||||
"23.99",
|
||||
"it returns the formatted dollar amount"
|
||||
);
|
||||
});
|
||||
|
||||
test("amount", function (assert) {
|
||||
const plan = Plan.create({ amountDollars: "22.12" });
|
||||
|
||||
assert.strictEqual(
|
||||
plan.get("unit_amount"),
|
||||
2212,
|
||||
"it returns the cents amount"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user