Skip to content

Instantly share code, notes, and snippets.

@jmoody
Created January 14, 2014 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmoody/8417832 to your computer and use it in GitHub Desktop.
Save jmoody/8417832 to your computer and use it in GitHub Desktop.
examples of calabash x-platform directory structure and file naming
/features]: moody$ tree
.
├── android
│   ├── helpers
│   │   └── utils_android.rb
│   ├── pages
│   │   ├── main_page_android.rb
│   │   ├── posts_page_android.rb
│   │   ├── welcome_page_android.rb
│   │   └── word_press_com_page_android.rb
│   └── support
│   ├── app_installation_hooks.rb
│   ├── app_life_cycle_hooks.rb
│   └── hooks.rb
├── cucumber.yml -> ../config/cucumber.yml
├── ios
│   ├── helpers
│   │   └── utils_ios.rb
│   ├── pages
│   │   ├── main_page_ios.rb
│   │   ├── new_article_page.rb
│   │   ├── welcome_page_ios.rb
│   │   └── word_press_com_page_ios.rb
│   └── support
│   ├── 01_launch.rb
│   └── 02_pre_stop_hooks.rb
├── login.feature
├── posts.feature
├── step_definitions
│   ├── calabash_steps.rb
│   ├── create_steps.rb
│   ├── main_steps.rb
│   ├── post_steps.rb
│   └── welcome_page_steps.rb
└── support
├── env.rb
├── posts.rb
└── users.rb
features]: moody$ tree
.
├── android
│   ├── helpers
│   │   └── utils_android.rb
│   ├── pages
│   │   ├── home_page_android.rb
│   │   └── splash_page_android.rb
│   └── support
│   ├── app_installation_hooks.rb
│   ├── app_life_cycle_hooks.rb
│   └── hooks.rb
├── debug.feature
├── home_page.feature
├── ios
│   ├── helpers
│   │   └── utils_ios.rb
│   ├── pages
│   │   ├── home_page_ios.rb
│   │   └── splash_page_ios.rb
│   └── support
│   ├── 01_launch.rb
│   └── 02_pre_stop_hooks.rb
├── splash_page.feature
├── step_definitions
│   ├── calabash_steps.rb
│   ├── debug_steps.rb
│   ├── home_page.rb
│   └── splash_steps.rb
└── support
├── env.rb
├── posts.rb
└── users.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment