BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
de1ffce7
Commit
de1ffce7
authored
Sep 16, 2015
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Spinach tests and updated CHANGELOG
parent
fa6df222
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
CHANGELOG
CHANGELOG
+1
-0
project.feature
features/project/project.feature
+6
-0
project.rb
features/steps/project/project.rb
+14
-0
No files found.
CHANGELOG
View file @
de1ffce7
...
...
@@ -43,6 +43,7 @@ v 8.0.0 (unreleased)
- Add support for Crowd
- Global Labels that are available to all projects
- Fix highlighting of deleted lines in diffs.
- Project notification level can be set on the project page itself
v 7.14.1
- Improve abuse reports management from admin area
...
...
features/project/project.feature
View file @
de1ffce7
...
...
@@ -74,3 +74,9 @@ Feature: Project
Given
I disable snippets in project
When
I visit project
"Shop"
page
Then
I should not see
"Snippets"
button
@javascript
Scenario
:
I
edit Project Notifications
Given
I click notifications drop down button
When
I choose Mention setting
Then
I should see Notification saved message
features/steps/project/project.rb
View file @
de1ffce7
...
...
@@ -130,4 +130,18 @@ class Spinach::Features::Project < Spinach::FeatureSteps
step
'I should see back to group button'
do
expect
(
page
).
to
have_content
'Back to Group'
end
step
'I click notifications drop down button'
do
click_link
'Notifications'
end
step
'I choose Mention setting'
do
click_link
'Mention'
end
step
'I should see Notification saved message'
do
page
.
within
'.flash-container'
do
expect
(
page
).
to
have_content
'Notification settings saved'
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment