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
8caccae4
Commit
8caccae4
authored
Feb 19, 2013
by
Andrew8xx8
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue helper tests improved
parent
b6d0f285
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
3 deletions
+29
-3
issues_helper_spec.rb
spec/helpers/issues_helper_spec.rb
+29
-3
No files found.
spec/helpers/issues_helper_spec.rb
View file @
8caccae4
require
"spec_helper"
require
"spec_helper"
describe
IssuesHelper
do
describe
IssuesHelper
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
:project
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let
(
:issue
)
{
create
:issue
,
project:
project
}
let
(
:ext_project
)
{
create
(
:redmine_project
)
}
let
(
:ext_project
)
{
create
:redmine_project
}
describe
:title_for_issue
do
describe
:title_for_issue
do
it
"should return issue title if used internal tracker"
do
it
"should return issue title if used internal tracker"
do
...
@@ -23,6 +23,32 @@ describe IssuesHelper do
...
@@ -23,6 +23,32 @@ describe IssuesHelper do
end
end
end
end
describe
:url_for_project_issues
do
let
(
:project_url
)
{
Gitlab
.
config
.
issues_tracker
.
redmine
.
project_url
}
let
(
:ext_expected
)
do
project_url
.
gsub
(
':project_id'
,
ext_project
.
id
.
to_s
)
.
gsub
(
':issues_tracker_id'
,
ext_project
.
issues_tracker_id
.
to_s
)
end
let
(
:int_expected
)
{
polymorphic_path
([
project
])
}
it
"should return internal path if used internal tracker"
do
@project
=
project
url_for_project_issues
.
should
match
(
int_expected
)
end
it
"should return path to external tracker"
do
@project
=
ext_project
url_for_project_issues
.
should
match
(
ext_expected
)
end
it
"should return empty string if project nil"
do
@project
=
nil
url_for_project_issues
.
should
eq
""
end
end
describe
:url_for_issue
do
describe
:url_for_issue
do
let
(
:issue_id
)
{
3
}
let
(
:issue_id
)
{
3
}
let
(
:issues_url
)
{
Gitlab
.
config
.
issues_tracker
.
redmine
.
issues_url
}
let
(
:issues_url
)
{
Gitlab
.
config
.
issues_tracker
.
redmine
.
issues_url
}
...
...
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