Feature: TableRow liquid tags As a designer I want to be able to use the tablerow liquid tag with locomotive contents Background: Given I have the site: "test site" set up And I have a custom model named "Projects" with | label | type | required | | Name | string | true | And I have entries for "Projects" with | name | _position | | Project 1 | 1 | | Project 2 | 2 | | Project 3 | 3 | Scenario: Use the tablerow tag Given a page named "project-table" with the template: """

Projects

{% tablerow project in contents.projects cols: 2 %} {{ project.name }} {% endtablerow %}
""" When I view the rendered page at "/project-table" Then the rendered output should look like: """

Projects

Project 1 Project 2
Project 3
"""