diff options
Diffstat (limited to 'testing/templates/comparison.html')
-rw-r--r-- | testing/templates/comparison.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/templates/comparison.html b/testing/templates/comparison.html new file mode 100644 index 0000000..87aaec3 --- /dev/null +++ b/testing/templates/comparison.html @@ -0,0 +1,6 @@ +{% 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 %} |