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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
211c433c
Commit
211c433c
authored
Apr 16, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gitlab::Git::Stats specs
parent
be41d0e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
spec/lib/gitlab/git/stats_spec.rb
spec/lib/gitlab/git/stats_spec.rb
+28
-0
No files found.
spec/lib/gitlab/git/stats_spec.rb
0 → 100644
View file @
211c433c
require
"spec_helper"
describe
Gitlab
::
Git
::
Stats
do
let
(
:repository
)
{
Gitlab
::
Git
::
Repository
.
new
(
'gitlabhq'
,
'master'
)
}
before
do
@stats
=
Gitlab
::
Git
::
Stats
.
new
(
repository
.
raw
,
'master'
)
end
describe
:authors
do
let
(
:author
)
{
@stats
.
authors
.
first
}
it
{
author
.
name
.
should
==
'Dmitriy Zaporozhets'
}
it
{
author
.
email
.
should
==
'dmitriy.zaporozhets@gmail.com'
}
it
{
author
.
commits
.
should
==
254
}
end
describe
:graph
do
let
(
:graph
)
{
@stats
.
graph
}
it
{
graph
.
labels
.
should
include
Date
.
today
.
stamp
(
'Aug 23'
)
}
it
{
graph
.
commits
.
should
be_kind_of
(
Array
)
}
it
{
graph
.
weeks
.
should
==
4
}
end
it
{
@stats
.
commits_count
.
should
==
918
}
it
{
@stats
.
files_count
.
should
==
550
}
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