Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
405B

  1. import { test } from "https://deno.land/std@v0.21.0/testing/mod.ts";
  2. import { assertEquals } from "https://deno.land/std@v0.21.0/testing/asserts.ts";
  3. import mustache from "../../mustache.mjs";
  4. const view = {
  5. title: "Joe",
  6. calc: function() {
  7. return 2 + 4;
  8. }
  9. };
  10. test(function canUseMustache() {
  11. assertEquals(
  12. mustache.render("{{title}} spends {{calc}}", view),
  13. "Joe spends 6"
  14. );
  15. });