14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
import { Null, NumberData, StringData } from "../data";
|
|
import { format } from "./format";
|
|
|
|
describe("format", () => {
|
|
it("null", () => {
|
|
expect(format.call(new StringData("{0}"), new Null())).toEqual(new StringData(""));
|
|
});
|
|
it("number", () => {
|
|
expect(format.call(new StringData("{0}"), new NumberData(42))).toEqual(
|
|
new StringData("42")
|
|
);
|
|
});
|
|
});
|