Sha256: e12eec07b510b71babe8cb4cb0b850cf953ce7c1d36a6f0eb59249404df967fa

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

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"
    And cleanup built app at "no-mount-app"
    
  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"
    And cleanup built app 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"
    And cleanup built app at "no-mount-app"
    
  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"
    And cleanup built app at "no-mount-app"
    
  Scenario: ES should be under namespace
    Given a built app at "test-app"
    Then "es/index.html" should exist at "test-app" and include "Como Esta?"
    And cleanup built app at "test-app"
    
  Scenario: Paths can be localized ES
    Given a built app at "test-app"
    Then "es/hola.html" should exist at "test-app" and include "Hola World"
    And cleanup built app at "test-app"

Version data entries

2 entries across 2 versions & 1 rubygems

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