mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
23 lines
849 B
Gherkin
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 |