Guest User

Untitled

a guest
Oct 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.33 KB | None | 0 0
  1. Zen::Asset
  2. - Load a single stylesheet
  3. - Load two stylesheets
  4. - Load a set of action specific files
  5. - Build all Javascript files
  6. - Build all Stylesheets
  7.  
  8. Zen::Controller::Preview
  9. - Convert Markdown to HTML
  10. - Convert Textile to HTML
  11. - Convert an non existing markup type
  12.  
  13. Ramaze::Helper::Breadcrumb
  14. - Add and build a set of breadcrumbs
  15. - Add and build a set of breadcrumbs with a custom separator
  16.  
  17. Ramaze::Helper::Common
  18. - Create an anchor tag
  19. - Create an anchor tag with a title
  20. - Create an anchor tag with two attributes
  21. - Create an anchor tag with a query string
  22.  
  23. Zen::Language
  24. - Test an English language pack
  25. - Test a Dutch language pack
  26.  
  27. Categories::Controller::Categories
  28. - Create the test data
  29. - No categories should exist
  30. - Create a new category
  31. - Edit an existing category
  32. - Delete an existing category
  33. - Delete the test data
  34.  
  35. Categories::Controller::CategoryGroups
  36. - No category groups should exist
  37. - Create a new category group
  38. - Edit an existing category group
  39. - Delete an existing category group
  40.  
  41. Ramaze::Helper::Category
  42. - Create the test data
  43. - Validate a valid category group
  44. - Validate an invalid category group
  45. - Validate a valid category
  46. - Validate an invalid category
  47. - Delete the test data
  48.  
  49. Categories::Plugin::Categories
  50. - Create the test data
  51. - Retrieve all categories
  52. - Limit the amount of categories
  53. - Specify a limit and an offset
  54. - Retrieve a specific category
  55. - Specify an invalid type
  56. - Delete the test data
  57.  
  58. Comments::Controller::Comments
  59. - Create all test data
  60. - No comments should exist
  61. - Create a new comment
  62. - Edit an existing comment
  63. - Delete an existing comment
  64. - Delete all test data
  65.  
  66. Comments::Controller::CommentsForm
  67. - Create the test data
  68. - Submit a comment
  69. - Delete the test data
  70.  
  71. Comments::Plugin::AntiSpam
  72. - Validate a spam comment using Defensio
  73.  
  74. Comments::Plugin::Comments
  75. - Create the test data
  76. - Retrieve all comments for an ID
  77. - Retrieve all comments for a slug
  78. - Retrieve all comments and check the markup
  79. - Retrieve a single comment
  80. - Retrieve a single comment with an offset
  81. - Remove the test data
  82.  
  83. CustomFields::Controller::CustomFieldGroups
  84. - No custom field groups should exist
  85. - Create a new group
  86. - Edit an existing group
  87. - Delete an existing group
  88.  
  89. CustomFields::Controller::CustomFields
  90. - Create the test data
  91. - No custom fields should exist
  92. - Create a new custom field
  93. - Edit an existing custom field
  94. - Delete an existing custom field
  95. - Delete all the test data
  96.  
  97. Ramaze::Helper::CustomField
  98. - Create the test data
  99. - Validate a valid custom field group
  100. - Validate an invalid custom field group
  101. - Validate a valid custom field
  102. - Validate an invalid custom field
  103. - Delete the test data
  104.  
  105. Menus::Controller::MenuItems
  106. - Create the required test data
  107. - No menu items should exist
  108. - Create a new menu item
  109. - Edit an existing menu item
  110. - Delete an existing menu item
  111. - Remove all test data
  112.  
  113. Menus::Controller::Menus
  114. - No menus should exist
  115. - Create a new menu
  116. - Edit an existing menu
  117. - Delete an existing menu
  118.  
  119. Ramaze::Helper::Menu
  120. - Create the test data
  121. - Validate a valid menu
  122. - Validate an invalid menu
  123. - Validate a valid menu item
  124. - Validate an invalid menu item
  125. - Delete the test data
  126.  
  127. Menus::Plugin::Menus
  128. - Create the test data
  129. - Retrieve a menu with all items
  130. - Retrieve a menu with only 1 item
  131. - Retrieve a menu with only 1 item and an offset
  132. - Retrieve a menu with only the root elemements
  133. - Retrieve a set of items and sort them
  134. - No empty attributes should be set
  135. - Delete the test data
  136.  
  137. Sections::Controller::SectionEntries
  138. - Create the test data
  139. - No section entries should exist
  140. - Create a new section entry
  141. - Edit an existing section entry
  142. - Delete an existing section entry
  143. - Delete the test data
  144.  
  145. Sections::Controller::Sections
  146. - No sections should exist
  147. - Create a new section
  148. - Edit an existing section
  149. - Delete an existing section
  150.  
  151. Ramaze::Helper::Section
  152. - Create the test data
  153. - Validate a valid section
  154. - Validate an invalid section
  155. - Validate a valid section entry
  156. - Validate an invalid section entry
  157. - Delete the test data
  158.  
  159. Sections::Plugin::SectionEntries
  160. - Create the test data
  161. - Retrieve all section entries
  162. - Retrieve all section entries for an ID
  163. - Retrieve a single entry by it's slug
  164. - Retrieve a single entry by it's ID
  165. - Limit the amount of entries
  166. - Limit the amount of entries with an offset
  167. - Delete the test data
  168.  
  169. Sections::Plugin::Sections
  170. - Create the test data
  171. - Retrieve all sections
  172. - Retrieve a single section
  173. - Retrieve a single section by it's ID
  174. - Limit the amount of sections
  175. - Limit the amount of sections and set an offset
  176. - Delete the test data
  177.  
  178. Settings::Controller::Settings
  179. - Update a set of settings
  180.  
  181. Settings::Plugin::Settings
  182. - Retrieve a setting
  183. - Migrate all settings
  184. - Remove all settings
  185.  
  186. Users::Controller::AccessRules
  187. - No access rules should exist
  188. - Create a new access rule
  189. - Edit an existing access rule
  190. - Delete an existing access rule
  191.  
  192. Users::Controller::UserGroups
  193. - A single user group should exist
  194. - Create a new user group
  195. - Edit an existing user group
  196. - Delete an existing user group
  197.  
  198. Users::Controller::Users
  199. - Show the login form
  200. - Log in
  201. - A user should exist
  202. - Create a new user
  203. - Edit an existing user
  204. - Delete an existing user
  205.  
  206. Ramaze::Helper::Users
  207. - Create the test data
  208. - Validate a valid user
  209. - Validate an invalid user
  210. - Validate a valid user group
  211. - Validate an invalid user group
  212. - Validate a valid access rule
  213. - Validate an invalid access rule
  214. - Delete the test data
  215.  
  216. Zen::Package
  217. - Select a specific package by it's name
  218. - Create a navigation menu of all packages
  219.  
  220. Zen::Plugin::Helper
  221. - Validate the type of a variable
  222.  
  223. Zen::Plugin::Markup
  224. - Convert Markdown to HTML
  225. - Convert Textile to HTML
  226. - Convert HTML to plain text
  227. - Convert to HTML to HTML
  228.  
  229. Zen::Plugin
  230. - No plugins should be added
  231. - Add a new plugin
  232. - Retrieve a plugin by it's name
  233. - Execute a plugin
  234.  
  235. Zen::Theme
  236. - No themes should exist
  237. - Add a new theme
  238. - Retrieve our theme
  239.  
  240. Zen::Validation
  241. - Validate the presence of an attribute
  242. - Validate the length of an attribute
  243. - Validate the format of an attribute
  244.  
  245. 170 specifications (379 requirements), 0 failures, 0 errors
Add Comment
Please, Sign In to add comment