Feature: Static tags render correctly
Scenario: Static tag with static attributes
Given a file named "static_tag.dryml" with:
"""
FOO
"""
When I render "static_tag.dryml"
Then the output DOM should be:
"""
FOO
"""
Scenario: Static tag with an interpolated attribute
Given a file named "static_tag.dryml" with:
"""
<% some_var = 'foo' %>
FOO
"""
When I render "static_tag.dryml"
Then the output DOM should be:
"""
FOO
"""
Scenario: define tags that are used in Rapid
Given a file named "static_tag.dryml" with:
"""
"""
When I render "static_tag.dryml"
Then the output DOM should be:
"""
"""