Sha256: 8f683857504f78133d2acc849c3bb4272d20ae4cd64ec7806a81774a3fcbb5c3

Contents?: true

Size: 990 Bytes

Versions: 13

Compression:

Stored size: 990 Bytes

Contents

Feature: Built-in auto_stylesheet_link_tag view helper
  In order to simplify including css files

  Scenario: Viewing the root path
    Given the Server is running
    When I go to "/auto-css.html"
    Then I should see "stylesheets/auto-css.css"

  Scenario: Viewing a tier-1 path
    Given the Server is running
    When I go to "/auto-css/auto-css.html"
    Then I should see "stylesheets/auto-css/auto-css.css"

  Scenario: Viewing the index file of a tier-1 path, without filename
    Given the Server is running
    When I go to "/auto-css"
    Then I should see "stylesheets/auto-css/index.css"

  Scenario: Viewing the index file of a tier-1 path, without filename, with a trailing slash
    Given the Server is running
    When I go to "/auto-css/"
    Then I should see "stylesheets/auto-css/index.css"

  Scenario: Viewing a tier-2 path
    Given the Server is running
    When I go to "/auto-css/sub/auto-css.html"
    Then I should see "stylesheets/auto-css/sub/auto-css.css"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
middleman-2.0.0.rc92 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc91 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc8 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc7 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc6 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc5 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc4 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc3 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc2 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.rc1 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.beta6 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.beta5 features/helpers_auto_stylesheet_link_tag.feature
middleman-2.0.0.beta4 features/helpers_auto_stylesheet_link_tag.feature