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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
20a4742e
Commit
20a4742e
authored
Jan 25, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing team tests
parent
00e4a479
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
24 deletions
+9
-24
app/assets/stylesheets/sections/projects.scss
app/assets/stylesheets/sections/projects.scss
+0
-2
app/views/dashboard/_teams.html.haml
app/views/dashboard/_teams.html.haml
+1
-1
features/dashboard/dashboard.feature
features/dashboard/dashboard.feature
+0
-6
features/steps/userteams/userteams.rb
features/steps/userteams/userteams.rb
+8
-8
features/teams/team.feature
features/teams/team.feature
+0
-7
No files found.
app/assets/stylesheets/sections/projects.scss
View file @
20a4742e
...
...
@@ -6,8 +6,6 @@
.side
{
@extend
.right
;
.groups_box
,
.teams_box
,
.projects_box
{
>
.title
{
padding
:
2px
15px
;
...
...
app/views/dashboard/_teams.html.haml
View file @
20a4742e
.ui-box
.ui-box
.teams-box
%h5
.title
Teams
%small
...
...
features/dashboard/dashboard.feature
View file @
20a4742e
...
...
@@ -16,12 +16,6 @@ Feature: Dashboard
And
I visit dashboard page
Then
I should see groups list
Scenario
:
I
should see correct projects count
Given
I have group with projects
And
group has a projects that does not belongs to me
When
I visit dashboard page
Then
I should see 1 project at group list
Scenario
:
I
should see last push widget
Then
I should see last push widget
And
I click
"Create Merge Request"
link
...
...
features/steps/userteams/userteams.rb
View file @
20a4742e
...
...
@@ -8,16 +8,16 @@ class Userteams < Spinach::FeatureSteps
end
Then
'I should see dashboard page without teams info block'
do
page
.
has_no_css?
(
".teams
_
box"
).
must_equal
true
page
.
has_no_css?
(
".teams
-
box"
).
must_equal
true
end
When
'I have teams with my membership'
do
team
=
create
:user_team
team
=
create
:user_team
,
owner:
current_user
team
.
add_member
(
current_user
,
UserTeam
.
access_roles
[
"Master"
],
true
)
end
Then
'I should see dashboard page with teams information block'
do
page
.
should
have_css
(
".teams
_
box"
)
page
.
should
have_css
(
".teams
-
box"
)
end
When
'exist user teams'
do
...
...
@@ -53,7 +53,7 @@ class Userteams < Spinach::FeatureSteps
end
When
'I have teams with projects and members'
do
team
=
create
:user_team
team
=
create
:user_team
,
owner:
current_user
@project
=
create
:project
team
.
add_member
(
current_user
,
UserTeam
.
access_roles
[
"Master"
],
true
)
team
.
assign_to_project
(
@project
,
UserTeam
.
access_roles
[
"Master"
])
...
...
@@ -92,7 +92,7 @@ class Userteams < Spinach::FeatureSteps
end
Given
'I have team with projects and members'
do
team
=
create
:user_team
team
=
create
:user_team
,
owner:
current_user
project
=
create
:project
user
=
create
:user
team
.
add_member
(
current_user
,
UserTeam
.
access_roles
[
"Master"
],
true
)
...
...
@@ -190,11 +190,11 @@ class Userteams < Spinach::FeatureSteps
end
And
'I have my own project without teams'
do
@project
=
create
:project
,
creator:
current_user
@project
=
create
:project
,
namespace:
current_user
.
namespace
end
And
'I visit my team page'
do
team
=
UserTeam
.
last
team
=
UserTeam
.
where
(
owner_id:
current_user
.
id
).
last
visit
team_path
(
team
)
end
...
...
@@ -213,7 +213,7 @@ class Userteams < Spinach::FeatureSteps
When
'I submit form with selected project and max access'
do
within
"#assign_projects"
do
select
@project
.
name
,
:from
=>
"project_ids"
select
@project
.
name
_with_namespace
,
:from
=>
"project_ids"
select
"Reporter"
,
:from
=>
"greatest_project_access"
end
click_button
"Add"
...
...
features/teams/team.feature
View file @
20a4742e
...
...
@@ -14,13 +14,6 @@ Feature: UserTeams
And
I visit dashboard page
Then
I should see dashboard page with teams information block
Scenario
:
I
should see all teams list
When
exist user teams
And
I visit dashboard page
And
I click on
"All teams"
link
Then
I should see
"All teams"
page
And
I should see exist teams in teams list
Scenario
:
I
should can create new team
When
I have teams with my membership
And
I visit dashboard page
...
...
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