merge more into core, use gem availability to autoload
This commit is contained in:
parent
27a9fa98f7
commit
9ebddeed1d
476 changed files with 81 additions and 141 deletions
18
middleman-core/features/more-instance_vars.feature
Normal file
18
middleman-core/features/more-instance_vars.feature
Normal file
|
@ -0,0 +1,18 @@
|
|||
Feature: Instance Vars
|
||||
In order to share data with layouts and partials via instance variables
|
||||
|
||||
Scenario: Setting an instance var in a template should be visible in its layout
|
||||
Given the Server is running at "more-instance-vars-app"
|
||||
When I go to "/instance-var-set.html"
|
||||
Then I should see "Var is 100"
|
||||
|
||||
Scenario: Setting an instance var in a template should be visible in a partial
|
||||
Given the Server is running at "more-instance-vars-app"
|
||||
When I go to "/instance-var-set.html"
|
||||
Then I should see "My var is here!"
|
||||
|
||||
Scenario: Setting an instance var in one file should not be visible in another
|
||||
Given the Server is running at "more-instance-vars-app"
|
||||
When I go to "/instance-var-set.html"
|
||||
When I go to "/no-instance-var.html"
|
||||
Then I should see "No var..."
|
Loading…
Add table
Add a link
Reference in a new issue