Skip to content

Commit b1c620a

Browse files
committed
add more rendering integration tests
1 parent 843b538 commit b1c620a

File tree

12 files changed

+185
-1
lines changed

12 files changed

+185
-1
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# cli download
2+
3+
Download a file
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Alias: | d
8+
9+
## Usage
10+
11+
```bash
12+
cli download SOURCE [TARGET] [OPTIONS] [AWS PARAMS...]
13+
```
14+
15+
## Examples
16+
17+
```bash
18+
cli download example.com
19+
```
20+
```bash
21+
cli download example.com ./output -f
22+
```
23+
24+
## Arguments
25+
26+
#### *SOURCE*
27+
28+
URL to download from
29+
30+
| Attributes |  
31+
|-----------------|-------------
32+
| Required: | ✓ Yes
33+
34+
#### *TARGET*
35+
36+
Target filename (default: same as source)
37+
38+
#### *AWS PARAMS...*
39+
40+
Additional arguments or flags for AWS CLI
41+
42+
## Options
43+
44+
#### *--force, -f*
45+
46+
Overwrite existing files
47+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# cli upload
2+
3+
Upload a file
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Alias: | u
8+
9+
## Usage
10+
11+
```bash
12+
cli upload FILES...
13+
```
14+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# cli
2+
3+
Sample application
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Version: | 0.1.0
8+
9+
## Usage
10+
11+
```bash
12+
cli COMMAND
13+
```
14+
15+
## Commands
16+
17+
- [download](cli download) - Download a file
18+
- [upload](cli upload) - Upload a file
19+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
saved spec/tmp/index.md
2+
saved spec/tmp/cli download.md
3+
saved spec/tmp/cli upload.md
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# cli download
2+
3+
Download something
4+
5+
## Usage
6+
7+
```bash
8+
cli download
9+
```
10+
11+
## Dependencies
12+
13+
#### *git*
14+
15+
16+
17+
#### *ruby*
18+
19+
visit $(blue_underlined https://www.ruby-lang.org) to install
20+
21+
#### *curl, wget*
22+
23+
install with $(green sudo apt install curl)
24+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# cli
2+
3+
Sample application that requires alternate dependencies
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Version: | 0.1.0
8+
9+
## Usage
10+
11+
```bash
12+
cli COMMAND
13+
```
14+
15+
## Commands
16+
17+
- [download](cli download) - Download something
18+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
saved spec/tmp/index.md
2+
saved spec/tmp/cli download.md
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# mygit
2+
3+
Sample application that delegates unknown commands to a different executable
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Version: | 0.1.0
8+
| Extensible: | git
9+
10+
## Usage
11+
12+
```bash
13+
mygit COMMAND
14+
```
15+
16+
## Commands
17+
18+
- [push](mygit push) - Push to my repository
19+
- [pull](mygit pull) - Pull from my repository
20+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# mygit pull
2+
3+
Pull from my repository
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Alias: | l
8+
9+
## Usage
10+
11+
```bash
12+
mygit pull
13+
```
14+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# mygit push
2+
3+
Push to my repository
4+
5+
| Attributes |  
6+
|------------------|-------------
7+
| Alias: | p
8+
9+
## Usage
10+
11+
```bash
12+
mygit push
13+
```
14+

0 commit comments

Comments
 (0)