mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: README.md VERSION app/controllers/projects/services_controller.rb app/controllers/projects/uploads_controller.rb app/services/test_hook_service.rb db/schema.rb features/steps/admin/settings.rb lib/gitlab/reference_extractor.rb spec/models/note_spec.rb
28 lines
827 B
Gherkin
28 lines
827 B
Gherkin
@admin
|
|
Feature: Admin Settings
|
|
Background:
|
|
Given I sign in as an admin
|
|
And I visit admin settings page
|
|
|
|
Scenario: Change application settings
|
|
When I modify settings and save form
|
|
Then I should see application settings saved
|
|
|
|
Scenario: Help text
|
|
When I set the help text
|
|
Then I should see the help text
|
|
And I go to help page
|
|
Then I should see the help text
|
|
And I logout
|
|
Then I should see the help text
|
|
|
|
Scenario: Change Slack Service Template settings
|
|
When I click on "Service Templates"
|
|
And I click on "Slack" service
|
|
And I fill out Slack settings
|
|
Then I check all events and submit form
|
|
And I should see service template settings saved
|
|
Then I click on "Slack" service
|
|
And I should see all checkboxes checked
|
|
And I should see Slack settings saved
|