Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
21041525
Commit
21041525
authored
Apr 18, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update according to review comments
parent
6b124d42
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
CHANGELOG
CHANGELOG
+1
-1
spec/features/runners_spec.rb
spec/features/runners_spec.rb
+4
-5
No files found.
CHANGELOG
View file @
21041525
...
...
@@ -19,7 +19,7 @@ v 8.7.0 (unreleased)
- Fix `signed_in_ip` being set to 127.0.0.1 when using a reverse proxy !3524
- Improved Markdown rendering performance !3389
- Improved Markdown rendering performance !3389 (Yorick Peterse)
- Make shared runners text in box configurable
(Kamil Trzciński)
- Make shared runners text in box configurable
- Don't attempt to look up an avatar in repo if repo directory does not exist (Stan Hu)
- API: Ability to subscribe and unsubscribe from issues and merge requests (Robert Schilling)
- Expose project badges in project settings
...
...
spec/features/runners_spec.rb
View file @
21041525
...
...
@@ -83,12 +83,11 @@ describe "Runners" do
describe
"shared runners description"
do
let
(
:shared_runners_text
)
{
'custom shared runners description'
}
before
{
stub_application_setting
(
shared_runners_text:
shared_runners_text
)
}
before
do
@project
=
FactoryGirl
.
create
:empty_project
,
shared_runners_enabled:
false
@project
.
team
<<
[
user
,
:master
]
visit
runners_path
(
@project
)
stub_application_setting
(
shared_runners_text:
shared_runners_text
)
project
=
FactoryGirl
.
create
:empty_project
,
shared_runners_enabled:
false
project
.
team
<<
[
user
,
:master
]
visit
runners_path
(
project
)
end
it
"sees shared runners description"
do
...
...
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