Sha256: 8338b284bfab07a9ecc5cedcbe154af8e3b3668233002cbc066bfc0c09b38759
Contents?: true
Size: 899 Bytes
Versions: 35
Compression:
Stored size: 899 Bytes
Contents
Feature: Partials dir Scenario: Find partials in a custom partials dir Given a fixture app "partials-dir-app" And a file named "config.rb" with: """ set :partials_dir, 'partials' """ And the Server is running When I go to "/index.html" Then I should see "contents of the partial" Scenario: Find partials in a nested custom partials dir Given a fixture app "partials-dir-app" And a file named "config.rb" with: """ set :partials_dir, 'nested/partials' """ And the Server is running When I go to "/index.html" Then I should see "contents of the nested partial" Scenario: Find partials in the default partials dir Given a fixture app "default-partials-dir-app" And a file named "config.rb" with: """ """ And the Server is running When I go to "/index.html" Then I should see "contents of the partial"
Version data entries
35 entries across 35 versions & 3 rubygems