Skip to content

Commit

Permalink
Fix readme anchor due to duplicated headings
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBaeumer committed Oct 19, 2019
1 parent 4f0c51e commit 1562f83
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Define language independent tests for your command line scripts and programs in
- It is a self-contained binary - no need to install a heavy lib or language
- It is easy and fast to write

For more information take a look at the [manual](docs/manual.md), the [examples](examples) or the [integration tests](integration).
For more information take a look at the [quick start](#quick-start), the [examples](examples) or the [integration tests](integration).

## Table of contents

Expand All @@ -29,7 +29,7 @@ For more information take a look at the [manual](docs/manual.md), the [examples]
+ [Usage](#usage)
+ [Tests](#tests)
- [command](#command)
- [config](#config)
- [config](#user-content-config-test)
- [exit-code](#exit-code)
- [stdout](#stdout)
* [contains](#contains)
Expand All @@ -40,7 +40,7 @@ For more information take a look at the [manual](docs/manual.md), the [examples]
* [not-contains](#not-contains)
* [xml](#xml)
- [stderr](#stderr)
+ [Config](#config)
+ [Config](#user-content-config-config)
- [dir](#dir)
- [env](#env)
- [inherit-env](#inherit-env)
Expand Down Expand Up @@ -277,15 +277,15 @@ it should print hello world: # use a more descriptive title...
exit-code: 0
```

#### config
#### <a name="config-test"></a>config

`config` sets configuration for the test. `config` can overwrite global configurations.

- name: `config`
- type: `map`
- default: `{}`
- notes:
- for more information look at [config](#Config)
- for more information look at [config](#user-content-config-config)

```yaml
echo test:
Expand Down Expand Up @@ -412,7 +412,7 @@ More examples queries:

##### lines

`lines` is a `map` which is make exact assertions on a given line by line number.
`lines` is a `map` which makes exact assertions on a given line by line number.

- name: `lines`
- type: `map`
Expand Down Expand Up @@ -504,7 +504,7 @@ See [stdout](#stdout) for more information.
line-count: 1
```

### Config
### <a name="config-config"></a>Config

You can add configs which will be applied globally to all tests or just for a specific test case, i.e.:

Expand Down

0 comments on commit 1562f83

Please sign in to comment.