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
Tatuya Kamada
gitlab-ce
Commits
13bf6126
Commit
13bf6126
authored
May 22, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test migration helpers using a migration class
parent
529c5821
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
spec/lib/gitlab/database/migration_helpers_spec.rb
spec/lib/gitlab/database/migration_helpers_spec.rb
+5
-7
No files found.
spec/lib/gitlab/database/migration_helpers_spec.rb
View file @
13bf6126
...
@@ -2,15 +2,13 @@ require 'spec_helper'
...
@@ -2,15 +2,13 @@ require 'spec_helper'
describe
Gitlab
::
Database
::
MigrationHelpers
,
lib:
true
do
describe
Gitlab
::
Database
::
MigrationHelpers
,
lib:
true
do
let
(
:model
)
do
let
(
:model
)
do
Class
.
new
do
ActiveRecord
::
Migration
.
new
.
extend
(
include
Gitlab
::
Database
::
MigrationHelpers
Gitlab
::
Database
::
MigrationHelpers
)
def
method_missing
(
name
,
*
args
,
&
block
)
ActiveRecord
::
Base
.
connection
.
send
(
name
,
*
args
,
&
block
)
end
end
.
new
end
end
before
{
allow
(
model
).
to
receive
(
:puts
)
}
describe
'#add_concurrent_index'
do
describe
'#add_concurrent_index'
do
context
'outside a transaction'
do
context
'outside a transaction'
do
before
do
before
do
...
...
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