Orchard/src/Orchard.Specs/Modules.feature
Nathan Heskew 18bba7873b Adding some UI to manage module features
--HG--
branch : dev
2010-04-27 11:24:06 -07:00

23 lines
849 B
Gherkin

Feature: Module management
In order add and enable features
As a root Orchard system operator
I want to install and enable modules and enable features
Scenario: Installed modules are listed
Given I have installed Orchard
When I go to "admin/modules"
Then I should see "<h2>Installed Modules</h2>"
And I should see "<h3>Themes</h3>"
And the status should be 200 OK
Scenario: Edit module shows its features
Given I have installed Orchard
When I go to "admin/modules/Edit/Orchard.Themes"
Then I should see "<h1>Edit Module: Themes</h1>"
And the status should be 200 OK
Scenario: Features of installed modules are listed
Given I have installed Orchard
When I go to "admin/modules/features"
Then I should see "<h2>Available Features</h2>"
And the status should be 200 OK