Sha256: 681749bb5fe76249bc18b0c13e83732584b4ec769486083b4bebe9226925dcdd

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

Feature: Preview Alt Path
  In order to preview localized html
  
  Scenario: EN should be at root
    Given the Server is running at "alt-path-app"
    When I go to "/"
    Then I should see "Howdy"

  Scenario: EN should be at root 2
    Given the Server is running at "alt-path-app"
    When I go to "/index.html"
    Then I should see "Howdy"
    
  Scenario: EN mounted at root should not be in directory
    Given the Server is running at "alt-path-app"
    When I go to "/lang_en/index.html"
    Then I should see "File Not Found"
    
  Scenario: Paths can be localized EN
    Given the Server is running at "alt-path-app"
    When I go to "/hello.html"
    Then I should see "Hello World"
    
  Scenario: ES should be under namespace
    Given the Server is running at "alt-path-app"
    When I go to "/lang_es/"
    Then I should see "Como Esta?"
    
  Scenario: ES should be under namespace 2
    Given the Server is running at "alt-path-app"
    When I go to "/lang_es/index.html"
    Then I should see "Como Esta?"
    
  Scenario: Paths can be localized ES
    Given the Server is running at "alt-path-app"
    When I go to "/lang_es/hola.html"
    Then I should see "Hola World"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-i18n-0.1.1 features/preview_alt_path.feature
middleman-i18n-0.1.0 features/preview_alt_path.feature