Sha256: 855717c268f711438b50607fb1cfe1e2e5d8964f1aa10d791cd03a61a93aa3ad

Contents?: true

Size: 1012 Bytes

Versions: 2

Compression:

Stored size: 1012 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

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