~jbboehr/+git/mustache-spec:master

Last commit made on 2015-06-05
Get this branch:
git clone -b master https://git.launchpad.net/~jbboehr/+git/mustache-spec
Only John Boehr can upload to this branch. If you are John Boehr please log in for upload directions.

Branch merges

Branch information

Name:
master
Repository:
lp:~jbboehr/+git/mustache-spec

Recent commits

0ad1530... by John Boehr

Add composer.json

83b0721... by Ricardo Mendes <email address hidden>

Merge pull request #81 from bobthecow/implicit-iterator-iteration

Allow iterating over implicit iterators.

934db98... by Ricardo Mendes <email address hidden>

Merge pull request #36 from kanru/master

Add lambda spec for Common Lisp

9f02c6a... by bobthecow

Test for iterating over implicit iterators.

Implicit iterators should be treated just like
explicit tags, i.e. they should work for iterating
over nested arrays.

    {{#items}}
      {{#.}}
        {{.}}
      {{/.}}
    {{/items}}

See mustache/mustache#177

72233f3... by pvande

Merge pull request #48 from cjerdonek/dotted-name-precedence

Add a test that dotted name resolution should make forward-only progress

e1ddf60... by Chris Jerdonek

Simplify issue #48 test case to be minimal.

a5d084b... by Chris Jerdonek

Added "Dotted Names - Context Precedence" test.

This test case tests that successive portions of dotted names should be
resolved against former resolutions (i.e. forward-only progress).

341b1bc... by Kanru-d

Add lambda spec for Common Lisp.

9b1bc7a... by pvande

Failed partial lookups should be empty. Fixes #21.

8c3547c... by pvande

Missing partials should be treated as empty strings.