BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a5b9e1c2
Commit
a5b9e1c2
authored
Sep 26, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added more specs
parent
a9f1e972
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
project_tree_saver_spec.rb
spec/lib/gitlab/import_export/project_tree_saver_spec.rb
+1
-1
custom_issue_tracker_service_spec.rb
...els/project_services/custom_issue_tracker_service_spec.rb
+16
-0
No files found.
spec/lib/gitlab/import_export/project_tree_saver_spec.rb
View file @
a5b9e1c2
...
...
@@ -112,7 +112,7 @@ describe Gitlab::ImportExport::ProjectTreeSaver, services: true do
end
it
'saves the correct service type'
do
expect
(
saved_project_json
[
'services'
].
first
[
'type'
]).
not_to
be_nil
expect
(
saved_project_json
[
'services'
].
first
[
'type'
]).
to
eq
(
'CustomIssueTrackerService'
)
end
it
'has project feature'
do
...
...
spec/models/project_services/custom_issue_tracker_service_spec.rb
View file @
a5b9e1c2
...
...
@@ -25,5 +25,21 @@ describe CustomIssueTrackerService, models: true do
it
{
is_expected
.
not_to
validate_presence_of
(
:issues_url
)
}
it
{
is_expected
.
not_to
validate_presence_of
(
:new_issue_url
)
}
end
context
'title'
do
let
(
:issue_tracker
)
{
described_class
.
new
(
properties:
{})
}
it
'sets a default title'
do
issue_tracker
.
title
=
nil
expect
(
issue_tracker
.
title
).
to
eq
(
'Custom Issue Tracker'
)
end
it
'sets the custom title'
do
issue_tracker
.
title
=
'test title'
expect
(
issue_tracker
.
title
).
to
eq
(
'test title'
)
end
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