25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. });