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
Boxiang Sun
gitlab-ce
Commits
d1257028
Commit
d1257028
authored
Aug 03, 2016
by
Adam Niedzielski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for a member with the expiration date.
parent
b2c8dc6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb
...s/members/master_adds_member_with_expiration_date_spec.rb
+27
-0
No files found.
spec/features/projects/members/master_adds_member_with_expiration_date_spec.rb
0 → 100644
View file @
d1257028
require
'spec_helper'
feature
'Projects > Members > Master adds member with expiration date'
,
feature:
true
,
js:
true
do
include
Select2Helper
let!
(
:master
)
{
create
(
:user
)
}
let!
(
:project
)
{
create
(
:project
)
}
let!
(
:new_member
)
{
create
(
:user
)
}
background
do
project
.
team
<<
[
master
,
:master
]
login_as
(
master
)
visit
namespace_project_project_members_path
(
project
.
namespace
,
project
)
end
scenario
'expiration date is displayed in the members list'
do
page
.
within
".users-project-form"
do
select2
(
new_member
.
id
,
from:
"#user_ids"
,
multiple:
true
)
fill_in
"Access expiration date"
,
with:
"2016-08-02"
click_on
"Add users to project"
end
page
.
within
".project_member:first-child"
do
expect
(
page
).
to
have_content
(
"Access expires Aug 2, 2016"
)
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