Fix specs.
This commit is contained in:
parent
448817c4de
commit
f2b37de54b
5 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,7 @@ describe Import::BitbucketController do
|
|||
|
||||
before do
|
||||
sign_in(user)
|
||||
controller.stub(:bitbucket_import_enabled?).and_return(true)
|
||||
end
|
||||
|
||||
describe "GET callback" do
|
||||
|
|
|
@ -5,6 +5,7 @@ describe Import::GithubController do
|
|||
|
||||
before do
|
||||
sign_in(user)
|
||||
controller.stub(:github_import_enabled?).and_return(true)
|
||||
end
|
||||
|
||||
describe "GET callback" do
|
||||
|
|
|
@ -5,6 +5,7 @@ describe Import::GitlabController do
|
|||
|
||||
before do
|
||||
sign_in(user)
|
||||
controller.stub(:gitlab_import_enabled?).and_return(true)
|
||||
end
|
||||
|
||||
describe "GET callback" do
|
||||
|
|
Loading…
Reference in a new issue