Sha256: 8764380546309ebe0864ac07c4b4cccc80fd7163a4dd080dac4d28ba6e81f613

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

Feature: Builder Alt Root
  In order to preview localized html
  
  Scenario: EN should be at root
    Given a built app at "alt-root-app"
    Then "index.html" should exist at "alt-root-app" and include "Howdy"
    And cleanup built app at "alt-root-app"
    
  Scenario: EN mounted at root should not be in directory
    Given a built app at "alt-root-app"
    Then "en/index.html" should not exist at "alt-root-app"
    And cleanup built app at "alt-root-app"
    
  Scenario: Paths can be localized EN
    Given a built app at "alt-root-app"
    Then "hello.html" should exist at "alt-root-app" and include "Hello World"
    And cleanup built app at "alt-root-app"
    
  Scenario: ES should be under namespace
    Given a built app at "alt-root-app"
    Then "es/index.html" should exist at "alt-root-app" and include "Como Esta?"
    And cleanup built app at "alt-root-app"
    
  Scenario: Paths can be localized ES
    Given a built app at "alt-root-app"
    Then "es/hola.html" should exist at "alt-root-app" and include "Hola World"
    And cleanup built app at "alt-root-app"

Version data entries

2 entries across 2 versions & 1 rubygems

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