aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/comparison.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/templates/comparison.html')
-rw-r--r--testing/templates/comparison.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/testing/templates/comparison.html b/testing/templates/comparison.html
deleted file mode 100644
index ea22546..0000000
--- a/testing/templates/comparison.html
+++ /dev/null
@@ -1,48 +0,0 @@
-{% if a == b -%}
- t
-{%- endif -%}
-{% if a == c -%}
- t
-{%- else -%}
- f
-{%- endif %}
-{% if a != c -%}
- t
-{%- endif %}
-{%- if a != b -%}
- t
-{%- else -%}
- f
-{%- endif %}
-{% if c >= b -%}
- t
-{%- endif -%}
-{% if b >= c -%}
- t
-{%- else -%}
- f
-{%- endif %}
-{% if c > b -%}
- t
-{%- endif -%}
-{% if a > c -%}
- t
-{%- else -%}
- f
-{%- endif %}
-{% if a <= b -%}
- t
-{%- endif -%}
-{% if c <= b -%}
- t
-{%- else -%}
- f
-{%- endif %}
-{% if a < c -%}
- t
-{%- endif %}
-{%- if a < b -%}
- t
-{%- else -%}
- f
-{%- endif %}