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
5583b952
Commit
5583b952
authored
Jan 26, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for build created using generic commit status
parent
8d397862
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
55 deletions
+81
-55
spec/factories/commit_statuses.rb
spec/factories/commit_statuses.rb
+7
-2
spec/features/commits_spec.rb
spec/features/commits_spec.rb
+74
-53
No files found.
spec/factories/commit_statuses.rb
View file @
5583b952
FactoryGirl
.
define
do
factory
:commit_status
,
class:
CommitStatus
do
started_at
'Di 29. Okt 09:51:28 CET 2013'
finished_at
'Di 29. Okt 09:53:28 CET 2013'
name
'default'
ref
'master'
status
'success'
description
'commit status'
commit
factory: :ci_commit_with_one_job
started_at
'Tue, 26 Jan 2016 08:23:42 +0100'
finished_at
'Tue, 26 Jan 2016 08:23:42 +0100'
after
(
:build
)
do
|
build
,
evaluator
|
build
.
project
=
build
.
commit
.
project
end
factory
:generic_commit_status
,
class:
GenericCommitStatus
do
name
'generic'
...
...
spec/features/commits_spec.rb
View file @
5583b952
...
...
@@ -16,6 +16,26 @@ describe 'Commits' do
FactoryGirl
.
create
:ci_commit
,
project:
project
,
sha:
project
.
commit
.
sha
end
context
'commit status is Generic Commit Status'
do
let!
(
:status
)
{
FactoryGirl
.
create
:generic_commit_status
,
commit:
commit
}
describe
'Commit builds'
do
before
do
visit
ci_status_path
(
commit
)
end
it
{
expect
(
page
).
to
have_content
commit
.
sha
[
0
..
7
]
}
it
'contains generic commit status build'
do
page
.
within
(
'.table-holder'
)
do
expect
(
page
).
to
have_content
"#
#{
status
.
id
}
"
# build id
expect
(
page
).
to
have_content
'generic'
# build name
end
end
end
end
context
'commit status is Ci Build'
do
let!
(
:build
)
{
FactoryGirl
.
create
:ci_build
,
commit:
commit
}
describe
'Project commits'
do
...
...
@@ -97,4 +117,5 @@ describe 'Commits' do
end
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