transcendental-lisp/fitnesse/FitNesseRoot/FitNesse/SuiteAcceptanceTests/SuiteWidgetTests/TestSimpleList/content.txt

33 lines
705 B
Plaintext

!3 A simple list
A list created as follows {{{ * Item one
* Item two}}} should be rendered as a two item bullet list.
#
* First create a page with a simple table in it.
#
!note We use backslash is a way to capture the leading space before the *.
!|script|
|start|Page Builder|
|line|\ * Item One|
|line|\ * Item Two|
|page|SimpleList|
#
* Then request that page
#
!|Response Requester.|
|uri|valid?|contents?|
|SimpleList|true||
#
* Make sure the html is correct for a simple table.
#
!|Response Examiner.|
|type|pattern|matches?|value|
|contents|<li>Item One</li>|true||
!|Response Examiner.|
|type|number|string?|
|line|1|<ul>|
|line|2|<li>Item One</li>|
|line|3|<li>Item Two</li>|
|line|4|</ul>|