middleman/middleman-core/features/i18n_builder_lang_map.feature
2012-03-10 19:40:04 -08:00

24 lines
887 B
Gherkin

@wip
Feature: Builder Lang Map
In order to preview localized html
Scenario: EN should be at root
Given a built app at "name-map-app"
Then "index.html" should exist at "name-map-app" and include "Howdy"
Scenario: EN mounted at root should not be in directory
Given a built app at "name-map-app"
Then "english/index.html" should not exist at "name-map-app"
Scenario: Paths can be localized EN
Given a built app at "name-map-app"
Then "hello.html" should exist at "name-map-app" and include "Hello World"
Scenario: ES should be under namespace
Given a built app at "name-map-app"
Then "spanish/index.html" should exist at "name-map-app" and include "Como Esta?"
Scenario: Paths can be localized ES
Given a built app at "name-map-app"
Then "spanish/hola.html" should exist at "name-map-app" and include "Hola World"