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
7479b1e6
Commit
7479b1e6
authored
Oct 10, 2019
by
allison.browne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spec that covers being able to add many removed zoom meetings
parent
974d0214
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
spec/models/zoom_meeting_spec.rb
spec/models/zoom_meeting_spec.rb
+14
-0
No files found.
spec/models/zoom_meeting_spec.rb
View file @
7479b1e6
...
...
@@ -95,6 +95,12 @@ describe ZoomMeeting do
end
end
shared_examples
'can remove meetings'
do
it
'can remove Zoom meetings'
do
create
(
:zoom_meeting
,
:removed_from_issue
,
issue:
issue
)
end
end
shared_examples
'cannot add meetings'
do
it
'fails to add a new meeting'
do
expect
do
...
...
@@ -134,5 +140,13 @@ describe ZoomMeeting do
it_behaves_like
'can add meetings'
end
context
'when second meeting is removed'
do
before
do
create
(
:zoom_meeting
,
:removed_from_issue
,
issue:
issue
)
end
it_behaves_like
'can remove meetings'
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