Sha256: e0848e76d20466ad1f7d6a9f72eeba82446466760ba6613dcad5732b9cf6ed1f

Contents?: true

Size: 1.52 KB

Versions: 5

Compression:

Stored size: 1.52 KB

Contents

[<< back](../../README.md)

1. [Description](#description)
2. [Example](#example)
3. [Options](#options)
4. [Usage](#usage)

## Description

Create reports and save then into `var/TEST-NAME` folder.

## Example

Run export and build reports using txt output format by default:

```ruby
play do
  export
end
```

Run test and build reports using `html` output format:

```ruby
play do
  export format: :html
end
```

## Options

1. **format**: txt, html, yaml. json, colored_text (txt with colors).
2. **preserve**: true, false.

## Usage

|    | Command                  | Description |
| -- | ------------------------ | ----------- |
| 01 | `export`                 | Export report files using default ouput format |
| 02 | `export format: :txt` | Export file using TXT ouput format |
| 03 | `export format: :html` | Export file using HTML ouput format |
| 04 | `export format: :yaml` | Export file using YAML ouput format |
| 05 | `export format: :json` | Export file using JSON ouput format |
| 06 | `export format: :colored_text` | Export file using colored TXT ouput format |
| 07 | `export preserve: true` | Same as 01 example buy preserving report copies |
| 08 | `export format: :html, preserve: true` | Same as 03 example but preserving report copies |
| 09 | `export format: "txt"` | Same as 02 |
| 10 | `export format: "html"` | Same as 03 |
| 11 | `export format: "yaml"` | Same as 04 |
| 12 | `export format: "json"` | Same as 05 |
| 13 | `export format: "colored_text"` | Same as 06 |
| 14 | `export format: "html", preserve: true` | Same as 08 |

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
teuton-2.3.11 docs/dsl/execution/export.md
teuton-2.3.10 docs/dsl/execution/export.md
teuton-2.3.9 docs/dsl/execution/export.md
teuton-2.3.8 docs/dsl/execution/export.md
teuton-2.3.7 docs/dsl/execution/export.md