2011-08-31 21:22:45 +02:00
|
|
|
Feature: Markdown support
|
|
|
|
In order to test included Maruku support
|
|
|
|
|
|
|
|
Scenario: Rendering html
|
2011-12-14 19:22:06 +01:00
|
|
|
Given the Server is running at "markdown-app"
|
|
|
|
When I go to "/index.html"
|
|
|
|
Then I should see "<p>Hello World</p>"
|
|
|
|
|
2012-05-03 00:27:47 +02:00
|
|
|
Scenario: Markdown extensions (Maruku)
|
2011-12-14 19:22:06 +01:00
|
|
|
Given the Server is running at "markdown-app"
|
|
|
|
When I go to "/smarty_pants.html"
|
2012-05-02 07:46:38 +02:00
|
|
|
Then I should see "“"
|
2011-12-14 19:22:06 +01:00
|
|
|
When I go to "/no_intra_emphasis.html"
|
|
|
|
Then I should not see "<em>"
|
|
|
|
When I go to "/tables.html"
|
|
|
|
Then I should see "<table>"
|
|
|
|
When I go to "/space_after_headers.html"
|
2012-05-03 01:28:04 +02:00
|
|
|
Then I should not see "<h1>"
|