delimiters.test.js 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. "use strict"
  2. const assert = require("assert")
  3. const doT = require("..")
  4. describe("custom delimiters", () => {
  5. describe("via config argument", () => {
  6. it("should replace delimiters for the current template only", () => {
  7. const tmplCustom = doT.template("<%= it.foo %>", {delimiters: {start: "<%", end: "%>"}})
  8. assert.equal(tmplCustom({foo: "bar"}), "bar")
  9. const tmpl = doT.template("{{= it.foo }}")
  10. assert.equal(tmpl({foo: "bar"}), "bar")
  11. })
  12. })
  13. describe("via global settings", () => {
  14. afterEach(() => {
  15. doT.setDelimiters({start: "{{", end: "}}"})
  16. })
  17. it("should replace delimiters for all templates", () => {
  18. doT.setDelimiters({start: "<%", end: "%>"})
  19. const tmpl = doT.template("<%= it.foo %>")
  20. assert.equal(tmpl({foo: "bar"}), "bar")
  21. })
  22. it("should be ok to pass the same delimiters", () => {
  23. doT.setDelimiters({start: "{{", end: "}}"})
  24. const tmpl = doT.template("{{= it.foo }}")
  25. assert.equal(tmpl({foo: "bar"}), "bar")
  26. })
  27. })
  28. })