1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/middleman-core/features/markdown.feature
Thomas Reynolds efd1ef69d6
2018 cleanup
Upgrade our deps
Drop support for Ruby 2.2 (because some deps have)
Update rubocop and lints
2018-09-11 11:43:07 -07:00

22 lines
814 B
Gherkin

Feature: Markdown support
In order to test included Maruku support
Scenario: Rendering html
Given the Server is running at "markdown-app"
When I go to "/index.html"
Then I should see "<p>Hello World</p>"
Scenario: Markdown extensions (Maruku)
Given the Server is running at "markdown-app"
When I go to "/smarty_pants.html"
Then I should see "Hello"
Scenario: Links with block syntax in ERB layout (erb)
Given the Server is running at "more-markdown-app"
When I go to "/with_layout_erb.html"
Then I should see '<a href="layout_block_link.html">'
Scenario: Links with block syntax in ERB layout and markdown
Given the Server is running at "more-markdown-app"
When I go to "/with_layout.html"
Then I should see '<a href="layout_block_link.html">'