diff --git a/test/functional/test_site/bugs/index.md b/test/functional/test_site/bugs/index.md index 995dd39721..3959045425 100644 --- a/test/functional/test_site/bugs/index.md +++ b/test/functional/test_site/bugs/index.md @@ -5,36 +5,12 @@ header: header.md
-**popover initiated by trigger: honor trigger attribute** +**Bug Description** -Issue #49 +Issue #XX Repro: -Establishing Requirements - - -
- -
-
- -**Support multiple inclusions of a modal** - -Issue #107 - -Repro: - - - - -**Remove extra space in links** - -Issue #147 - -Repro: - -This is a link. -[[link text](https://github.com)] +Steps to Reproduce
diff --git a/test/functional/test_site/bugs/modal.md b/test/functional/test_site/bugs/modal.md deleted file mode 100644 index 6a09255b1c..0000000000 --- a/test/functional/test_site/bugs/modal.md +++ /dev/null @@ -1,5 +0,0 @@ -This is to reproduce multiple inclusions of a modal bug - - - - diff --git a/test/functional/test_site/expected/bugs/index.html b/test/functional/test_site/expected/bugs/index.html index ced4bab8f0..518f317ea4 100644 --- a/test/functional/test_site/expected/bugs/index.html +++ b/test/functional/test_site/expected/bugs/index.html @@ -35,44 +35,10 @@
-

popover initiated by trigger: honor trigger attribute

-

Issue #49

+

Bug Description

+

Issue #XX

Repro:

-

Establishing Requirements

- -
-
-

Requirements gathering, requirements elicitation, requirements analysis, -requirements capture are some of the terms commonly and interchangeably used to represent the activity -of understanding what a software product should do.

-

Support multiple inclusions of a modal

-

Issue #107

-

Repro:

-
-

This is to reproduce multiple inclusions of a modal bug

- -
-

Requirements gathering, requirements elicitation, requirements analysis, requirements capture are some of the terms commonly and interchangeably used to represent the activity of understanding what a software product should - do. -

-
-
-
-
-

This is to reproduce multiple inclusions of a modal bug

- -
-

Requirements gathering, requirements elicitation, requirements analysis, requirements capture are some of the terms commonly and interchangeably used to represent the activity of understanding what a software product should - do. -

-
-
-
-

Remove extra space in links

-

Issue #147

-

Repro:

-

This is a link. [ - link text]

+

Steps to Reproduce

diff --git a/test/functional/test_site/expected/siteData.json b/test/functional/test_site/expected/siteData.json index a74f8453ae..8fb55f47e5 100644 --- a/test/functional/test_site/expected/siteData.json +++ b/test/functional/test_site/expected/siteData.json @@ -286,6 +286,24 @@ "globalAndFrontMatterOverrideProperty": "Overridden by global override", "headings": {}, "headingKeywords": {} + }, + { + "src": "testIncludeMultipleModals.md", + "title": "Multiple inclusions of a modal should be supported", + "layout": "default", + "globalOverrideProperty": "Overridden by global override", + "globalAndFrontMatterOverrideProperty": "Overridden by global override", + "headings": {}, + "headingKeywords": {} + }, + { + "src": "testPopoverTrigger.md", + "title": "Popover initiated by trigger should honor trigger attribute", + "layout": "default", + "globalOverrideProperty": "Overridden by global override", + "globalAndFrontMatterOverrideProperty": "Overridden by global override", + "headings": {}, + "headingKeywords": {} } ] } diff --git a/test/functional/test_site/expected/testIncludeMultipleModals.html b/test/functional/test_site/expected/testIncludeMultipleModals.html new file mode 100644 index 0000000000..27a7f7ddf1 --- /dev/null +++ b/test/functional/test_site/expected/testIncludeMultipleModals.html @@ -0,0 +1,85 @@ + + + + + + + + + + Multiple inclusions of a modal should be supported + + + + + + + + + + + + + + +
+
+
+

Multiple inclusions of a modal should be supported

+
+ + +
+

Requirements gathering, requirements elicitation, requirements analysis, requirements capture are some of the terms commonly and interchangeably used to represent the activity of understanding what a software product should + do.

+
+
+
+
+ + +
+

Requirements gathering, requirements elicitation, requirements analysis, requirements capture are some of the terms commonly and interchangeably used to represent the activity of understanding what a software product should + do.

+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/functional/test_site/expected/testPopoverTrigger.html b/test/functional/test_site/expected/testPopoverTrigger.html new file mode 100644 index 0000000000..19f2655236 --- /dev/null +++ b/test/functional/test_site/expected/testPopoverTrigger.html @@ -0,0 +1,71 @@ + + + + + + + + + + Popover initiated by trigger should honor trigger attribute + + + + + + + + + + + + + + +
+
+
+

Popover initiated by trigger should honor trigger attribute

+ + popover +
+ User stories +
+
+ +
+ + + + + + + + + + + + + + + + + diff --git a/test/functional/test_site/requirements/testModal.md b/test/functional/test_site/requirements/testModal.md new file mode 100644 index 0000000000..f031fde0a3 --- /dev/null +++ b/test/functional/test_site/requirements/testModal.md @@ -0,0 +1,5 @@ + + + + + diff --git a/test/functional/test_site/site.json b/test/functional/test_site/site.json index 73000af971..d67f514bac 100644 --- a/test/functional/test_site/site.json +++ b/test/functional/test_site/site.json @@ -71,6 +71,14 @@ { "src": "testIncludePluginsRendered.md", "title": "Included files should have plugins rendered on them" + }, + { + "src": "testIncludeMultipleModals.md", + "title": "Multiple inclusions of a modal should be supported" + }, + { + "src": "testPopoverTrigger.md", + "title": "Popover initiated by trigger should honor trigger attribute" } ], "ignore": [ diff --git a/test/functional/test_site/testIncludeMultipleModals.md b/test/functional/test_site/testIncludeMultipleModals.md new file mode 100644 index 0000000000..980cfb41c4 --- /dev/null +++ b/test/functional/test_site/testIncludeMultipleModals.md @@ -0,0 +1,4 @@ +**Multiple inclusions of a modal should be supported** + + + diff --git a/test/functional/test_site/testPopoverTrigger.md b/test/functional/test_site/testPopoverTrigger.md new file mode 100644 index 0000000000..79f0684b66 --- /dev/null +++ b/test/functional/test_site/testPopoverTrigger.md @@ -0,0 +1,8 @@ +**Popover initiated by trigger should honor trigger attribute** + + + popover +
+ User stories +
+