From 564aa0515d84a66b312b0b68a301845118915fa7 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Fri, 26 May 2017 15:55:06 -0700 Subject: [PATCH] Update spec to match latest EE changes --- spec/models/project_spec.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index 2075d7199a1..36575acf671 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -1436,9 +1436,14 @@ describe Project, models: true do let(:mirror) { false } before do - allow_any_instance_of(Gitlab::Shell).to receive(:import_repository).with(project.repository_storage_path, project.path_with_namespace, project.import_url).and_return(true) + allow_any_instance_of(Gitlab::Shell).to receive(:import_repository) + .with(project.repository_storage_path, project.path_with_namespace, project.import_url) + .and_return(true) + allow(project).to receive(:repository_exists?).and_return(true) - allow_any_instance_of(Repository).to receive(:build_cache).and_return(true) + + expect_any_instance_of(Repository).to receive(:after_import) + .and_call_original end it 'imports a project' do -- GitLab