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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
59fc1816
Commit
59fc1816
authored
Jun 21, 2016
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename Repo -> Repository
parent
5c9f0896
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
24 deletions
+24
-24
app/views/layouts/nav/_project.html.haml
app/views/layouts/nav/_project.html.haml
+2
-2
features/project/active_tab.feature
features/project/active_tab.feature
+15
-15
features/project/shortcuts.feature
features/project/shortcuts.feature
+3
-3
features/steps/project/project_find_file.rb
features/steps/project/project_find_file.rb
+2
-2
features/steps/shared/project_tab.rb
features/steps/shared/project_tab.rb
+2
-2
No files found.
app/views/layouts/nav/_project.html.haml
View file @
59fc1816
...
...
@@ -38,9 +38,9 @@
-
if
project_nav_tab?
:files
=
nav_link
(
controller:
%w(tree blob blame edit_tree new_tree find_file commit commits compare repositories tags branches releases network)
)
do
=
link_to
project_files_path
(
@project
),
title:
'Repo'
,
class:
'shortcuts-tree'
do
=
link_to
project_files_path
(
@project
),
title:
'Repo
sitory
'
,
class:
'shortcuts-tree'
do
%span
Repo
Repo
sitory
-
if
project_nav_tab?
:pipelines
=
nav_link
(
controller:
[
:pipelines
,
:builds
,
:environments
])
do
...
...
features/project/active_tab.feature
View file @
59fc1816
...
...
@@ -10,9 +10,9 @@ Feature: Project Active Tab
Then
the active main tab should be Home
And
no other main tabs should be active
Scenario
:
On Project Repo
Scenario
:
On Project Repo
sitory
Given
I visit my project's files page
Then
the active main tab should be Repo
Then
the active main tab should be Repo
sitory
And
no other main tabs should be active
Scenario
:
On Project Issues
...
...
@@ -59,46 +59,46 @@ Feature: Project Active Tab
And
no other sub navs should be active
And
the active main tab should be Settings
# Sub Tabs: Repo
# Sub Tabs: Repo
sitory
Scenario
:
On Project Repo/Files
Scenario
:
On Project Repo
sitory
/Files
Given
I visit my project's files page
Then
the active sub tab should be Files
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Repo/Commits
Scenario
:
On Project Repo
sitory
/Commits
Given
I visit my project's commits page
Then
the active sub tab should be Commits
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Repo/Network
Scenario
:
On Project Repo
sitory
/Network
Given
I visit my project's network page
Then
the active sub tab should be Network
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Repo/Compare
Scenario
:
On Project Repo
sitory
/Compare
Given
I visit my project's commits page
And
I click the
"Compare"
tab
Then
the active sub tab should be Compare
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Repo/Branches
Scenario
:
On Project Repo
sitory
/Branches
Given
I visit my project's commits page
And
I click the
"Branches"
tab
Then
the active sub tab should be Branches
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Repo/Tags
Scenario
:
On Project Repo
sitory
/Tags
Given
I visit my project's commits page
And
I click the
"Tags"
tab
Then
the active sub tab should be Tags
And
no other sub tabs should be active
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
Scenario
:
On Project Issues/Browse
Given
I visit my project's issues page
...
...
features/project/shortcuts.feature
View file @
59fc1816
...
...
@@ -8,21 +8,21 @@ Feature: Project Shortcuts
@javascript
Scenario
:
Navigate to files tab
Given
I press
"g"
and
"f"
Then
the active main tab should be Repo
Then
the active main tab should be Repo
sitory
Then
the active sub tab should be Files
@javascript
Scenario
:
Navigate to commits tab
Given
I visit my project's files page
Given
I press
"g"
and
"c"
Then
the active main tab should be Repo
Then
the active main tab should be Repo
sitory
Then
the active sub tab should be Commits
@javascript
Scenario
:
Navigate to network tab
Given
I press
"g"
and
"n"
Then
the active sub tab should be Network
And
the active main tab should be Repo
And
the active main tab should be Repo
sitory
@javascript
Scenario
:
Navigate to graphs tab
...
...
features/steps/project/project_find_file.rb
View file @
59fc1816
...
...
@@ -13,12 +13,12 @@ class Spinach::Features::ProjectFindFile < Spinach::FeatureSteps
end
step
'I should see "find file" page'
do
ensure_active_main_tab
(
'Repo'
)
ensure_active_main_tab
(
'Repo
sitory
'
)
expect
(
page
).
to
have_selector
(
'.file-finder-holder'
,
count:
1
)
end
step
'I fill in Find by path with "git"'
do
ensure_active_main_tab
(
'Repo'
)
ensure_active_main_tab
(
'Repo
sitory
'
)
expect
(
page
).
to
have_selector
(
'.file-finder-holder'
,
count:
1
)
end
...
...
features/steps/shared/project_tab.rb
View file @
59fc1816
...
...
@@ -8,8 +8,8 @@ module SharedProjectTab
ensure_active_main_tab
(
'Project'
)
end
step
'the active main tab should be Repo'
do
ensure_active_main_tab
(
'Repo'
)
step
'the active main tab should be Repo
sitory
'
do
ensure_active_main_tab
(
'Repo
sitory
'
)
end
step
'the active main tab should be Graphs'
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