Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 705 Bytes

File metadata and controls

34 lines (24 loc) · 705 Bytes

<< back

new

Create the skeleton of a new project.

Usage: teuton new DIRECTORY

Example:

$ teuton new foo

Creating foo project
* Create dir        => foo
* Create file       => foo/config.yaml
* Create file       => foo/start.rb

This command will create the next structure:

foo
├── config.yaml
└── start.rb
Type Path Description
Directory foo Base directory
File foo/start.rb Main file with test definitions
File foo/config.yaml YAML configuration file

Alias: teuton n foo, teuton -n foo, teuton --new foo