Fixture-less slim
This commit is contained in:
parent
2e68e09200
commit
b1d6b94302
|
@ -2,6 +2,20 @@ Feature: Support slim templating language
|
||||||
In order to offer an alternative to Haml
|
In order to offer an alternative to Haml
|
||||||
|
|
||||||
Scenario: Rendering Slim
|
Scenario: Rendering Slim
|
||||||
Given the Server is running at "slim-app"
|
Given an empty app
|
||||||
|
And a file named "config.rb" with:
|
||||||
|
"""
|
||||||
|
"""
|
||||||
|
And a file named "source/slim.html.slim" with:
|
||||||
|
"""
|
||||||
|
doctype 5
|
||||||
|
html lang='en'
|
||||||
|
head
|
||||||
|
meta charset="utf-8"
|
||||||
|
|
||||||
|
body
|
||||||
|
h1 Welcome to Slim
|
||||||
|
"""
|
||||||
|
And the Server is running at "empty_app"
|
||||||
When I go to "/slim.html"
|
When I go to "/slim.html"
|
||||||
Then I should see "<h1>Welcome to Slim</h1>"
|
Then I should see "<h1>Welcome to Slim</h1>"
|
|
@ -1 +0,0 @@
|
||||||
require "slim"
|
|
|
@ -1,7 +0,0 @@
|
||||||
doctype 5
|
|
||||||
html lang='en'
|
|
||||||
head
|
|
||||||
meta charset="utf-8"
|
|
||||||
|
|
||||||
body
|
|
||||||
h1 Welcome to Slim
|
|
Loading…
Reference in a new issue