Include missing specs

This commit is contained in:
Kyle Fuller
2015-12-09 19:17:21 +00:00
parent ae75ea5911
commit 14195b3199
18 changed files with 729 additions and 0 deletions

2
Specs/fixtures/base.html vendored Normal file
View File

@@ -0,0 +1,2 @@
{% block header %}Header{% endblock %}
{% block body %}Body{% endblock %}

2
Specs/fixtures/child.html vendored Normal file
View File

@@ -0,0 +1,2 @@
{% extends "base.html" %}
{% block body %}Child{% endblock %}

1
Specs/fixtures/test.html vendored Normal file
View File

@@ -0,0 +1 @@
Hello {{ target }}!