Ghost/core/test/unit/server_helpers
Hannah Wolfe f52e3e779b 🎨 Allow foreach else inside of get helper (#8160)
closes #7242

- before this, the get helper's else was used for empty resultsets
- the argument was made that we should fall through to a foreach or with helper's else instead
- I agree that this is the more natural, consistent approach, and so would like to change it for Ghost 1.0

E.g. as of this PR we now have:

{{#get "posts" filter="tag:doesnt-exist"}}
  {{#foreach posts}}
  {{else}}
    this ges executed because there are no results
  {{/foreach}}
{{/get}}

instead of

{{#get "posts" filter="tag:doesnt-exist"}}
  {{#foreach posts}}
  {{else}}
  {{/foreach}}
{{each}}
    this ges executed because there are no results
{{/get}}
2017-03-14 17:44:52 +01:00
..
test_tpl Fix @blog globals in special templates 2015-03-28 23:21:10 +02:00
asset_spec.js 🎨 Move settings cache & cleanup settings API (#8057) 2017-02-27 16:53:04 +01:00
author_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
body_class_spec.js 🔥 No more availableThemes (#8085) 2017-03-02 17:53:48 +01:00
content_spec.js 🔥 Remove legacy content zero hack (#8156) 2017-03-14 14:56:46 +01:00
date_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
encode_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
excerpt_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
facebook_url_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
foreach_spec.js Move internal tags out of labs (#7519) 2016-10-10 09:51:03 +01:00
get_spec.js 🎨 Allow foreach else inside of get helper (#8160) 2017-03-14 17:44:52 +01:00
ghost_foot_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
ghost_head_spec.js 🎨 Move settings cache & cleanup settings API (#8057) 2017-02-27 16:53:04 +01:00
has_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
image_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
is_spec.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
meta_description_spec.js 🎨 Move settings cache & cleanup settings API (#8057) 2017-02-27 16:53:04 +01:00
meta_title_spec.js 🎨 Move settings cache & cleanup settings API (#8057) 2017-02-27 16:53:04 +01:00
navigation_spec.js urlencode navigation URLs rather than HTML escape (#7836) 2017-01-17 15:55:19 +01:00
next_post_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
page_url_spec.js 🔥 Remove deprecated pageUrl helper (#7509) 2016-10-06 20:47:37 +02:00
pagination_spec.js 🎨 change how we get and set config 2016-09-20 15:59:34 +01:00
plural_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
post_class_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
prev_post_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
tags_spec.js Move internal tags out of labs (#7519) 2016-10-10 09:51:03 +01:00
title_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
twitter_url_spec.js improvement: jshint/jscs 2016-06-17 22:59:47 +02:00
url_spec.js urlencode navigation URLs rather than HTML escape (#7836) 2017-01-17 15:55:19 +01:00
utils.js Unify usage of config in unit tests 2015-12-15 10:48:24 +00:00