Last active
December 12, 2015 04:18
-
-
Save petrjasek/4713293 to your computer and use it in GitHub Desktop.
how to test templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ 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 }} |
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
or