2010-04-23 15:10:47 -07:00
|
|
|
|
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
|
|
|
|
|
|
|
2010-04-27 11:24:06 -07:00
|
|
|
|
Scenario: Installed modules are listed
|
2010-04-23 15:10:47 -07:00
|
|
|
|
Given I have installed Orchard
|
|
|
|
|
|
When I go to "admin/modules"
|
2010-04-27 11:24:06 -07:00
|
|
|
|
Then I should see "<h2>Installed Modules</h2>"
|
2010-04-23 15:10:47 -07:00
|
|
|
|
And I should see "<h3>Themes</h3>"
|
|
|
|
|
|
And the status should be 200 OK
|
2010-04-27 11:24:06 -07:00
|
|
|
|
|
|
|
|
|
|
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
|