mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
27 lines
1 KiB
Gherkin
27 lines
1 KiB
Gherkin
@wip
|
|
Feature: Builder No Mount
|
|
In order to preview localized html
|
|
|
|
Scenario: EN should be at root
|
|
Given a built app at "no-mount-app"
|
|
Then "en/index.html" should exist at "no-mount-app" and include "Howdy"
|
|
|
|
Scenario: EN mounted at root should not be in directory
|
|
Given a built app at "no-mount-app"
|
|
Then "index.html" should not exist at "no-mount-app"
|
|
|
|
Scenario: Paths can be localized EN
|
|
Given a built app at "no-mount-app"
|
|
Then "en/hello.html" should exist at "no-mount-app" and include "Hello World"
|
|
|
|
Scenario: EN mounted at root should not be in directory
|
|
Given a built app at "no-mount-app"
|
|
Then "hello.html" should not exist at "no-mount-app"
|
|
|
|
Scenario: ES should be under namespace
|
|
Given a built app at "i18n-test-app"
|
|
Then "es/index.html" should exist at "i18n-test-app" and include "Como Esta?"
|
|
|
|
Scenario: Paths can be localized ES
|
|
Given a built app at "i18n-test-app"
|
|
Then "es/hola.html" should exist at "i18n-test-app" and include "Hola World"
|