summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorlfbrock <lf.brock@spinpunch.com>2015-12-08 15:27:45 -0500
committerlfbrock <lf.brock@spinpunch.com>2015-12-08 15:27:45 -0500
commitcce301c8b52a15428b6d2dad0e3d15479b223e72 (patch)
tree1b87f372faecb9c8489c1337d471572ee9bd560b /doc
parent14775d4f148848143dab07d59cca899303d10966 (diff)
downloadchat-cce301c8b52a15428b6d2dad0e3d15479b223e72.tar.gz
chat-cce301c8b52a15428b6d2dad0e3d15479b223e72.tar.bz2
chat-cce301c8b52a15428b6d2dad0e3d15479b223e72.zip
Update markdown tests
Diffstat (limited to 'doc')
-rw-r--r--doc/developer/tests/test-markdown-lists.md53
1 files changed, 46 insertions, 7 deletions
diff --git a/doc/developer/tests/test-markdown-lists.md b/doc/developer/tests/test-markdown-lists.md
index 905350d31..d5bbd82ac 100644
--- a/doc/developer/tests/test-markdown-lists.md
+++ b/doc/developer/tests/test-markdown-lists.md
@@ -21,6 +21,7 @@ Verify that all list types render as expected.
```
**Actual:**
+
3. One
2. Two
1. Three
@@ -38,12 +39,13 @@ Verify that all list types render as expected.
```
**Actual:**
-1. Alpha
- 1. Bravo
+
+1. Alpha
+ 1. Bravo
1. Charlie
1. Delta
- 1. Echo
- 1. Foxtrot
+ 1. Echo
+ 1. Foxtrot
### Single-item Unordered List
@@ -99,6 +101,7 @@ Verify that all list types render as expected.
```
**Actual:**
+
1. One
+ Two
- Three
@@ -169,10 +172,11 @@ Verify that all list types render as expected.
```
**Actual:**
+
1. One
- - Two
-
-
+ - Two
+
+
1. One
2. Two
@@ -186,7 +190,42 @@ This text should be on a new line.
```
**Actual:**
+
1. One
- Two
This text should be on a new line.
+### Task Lists
+
+**Expected:**
+```
+[ ] One
+ [ ] Subpoint one
+ - Normal Bullet
+[ ] Two
+[x] Completed item
+```
+
+**Actual:**
+
+- [ ] One
+ - [ ] Subpoint one
+ - Normal Bullet
+- [ ] Two
+- [x] Completed item
+
+### Numbered Task Lists
+
+**Expected:**
+```
+1. [ ] One
+2. [ ] Two
+3. [x] Completed item
+```
+
+**Actual:**
+
+1. [ ] One
+2. [ ] Two
+3. [x] Completed item
+