Skip to content

Instantly share code, notes, and snippets.

@petrjasek
Last active December 12, 2015 04:18
Show Gist options
  • Save petrjasek/4713293 to your computer and use it in GitHub Desktop.
Save petrjasek/4713293 to your computer and use it in GitHub Desktop.
how to test templates
{{ test }}
{{ asset file="foo.css" dest="bar.css" }}
{{ assert_equals }}/static/bar.css{{ /assert_equals }}
{{ /test }}
{{ assert }}
{{ asset file="foo.css" dest="bar.css" }}
{{ equals }}/static/bar.css{{ /equals }}
{{ /assert }}
@petrjasek
Copy link
Author

or

{{ test }}
    {{ asset file="foo.css" dest="bar.css" }}
    {{ assert equals="/static/bar.css" }}
{{ /test }}

@petrjasek
Copy link
Author

or

{{ assert equals="/static/bar.css" }}
    {{ asset file="foo.css" dest="bar.css" }}
{{ /assert }}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment