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
Léo-Paul Géneau
gitlab-ce
Commits
5430122c
Commit
5430122c
authored
Dec 06, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now we need to include EmailHelpers for each test
parent
46d7c1d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
spec/models/deploy_key_spec.rb
spec/models/deploy_key_spec.rb
+2
-0
spec/models/key_spec.rb
spec/models/key_spec.rb
+2
-0
No files found.
spec/models/deploy_key_spec.rb
View file @
5430122c
require
'spec_helper'
describe
DeployKey
,
models:
true
do
include
EmailHelpers
describe
"Associations"
do
it
{
is_expected
.
to
have_many
(
:deploy_keys_projects
)
}
it
{
is_expected
.
to
have_many
(
:projects
)
}
...
...
spec/models/key_spec.rb
View file @
5430122c
require
'spec_helper'
describe
Key
,
models:
true
do
include
EmailHelpers
describe
"Associations"
do
it
{
is_expected
.
to
belong_to
(
:user
)
}
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