summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-11-09 17:26:15 -0800
committerMichael Kozono <mkozono@gmail.com>2017-12-01 15:26:41 -0800
commit1ba4d417fe7bec333c410cff861d43f0bd1e1c03 (patch)
treecf1c2d66fece49091dfaf44f98b72be090cf8e3b
parentc77a353dca25c2e08c409f1f3fc5a61a3eea69dc (diff)
downloadgitlab-ce-1ba4d417fe7bec333c410cff861d43f0bd1e1c03.tar.gz
Clean up after test
-rw-r--r--spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb b/spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb
index cf1cad15c9a..913622cdb95 100644
--- a/spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb
+++ b/spec/lib/gitlab/background_migration/prepare_untracked_uploads_spec.rb
@@ -83,8 +83,14 @@ describe Gitlab::BackgroundMigration::PrepareUntrackedUploads, :migration, :side
# E.g. The installation is in use at the time of migration, and someone has
# just uploaded a file
context 'when there are files in /uploads/tmp' do
+ let(:tmp_file) { Rails.root.join(described_class::UPLOAD_DIR, 'tmp', 'some_file.jpg') }
+
before do
- FileUtils.touch(Rails.root.join(described_class::UPLOAD_DIR, 'tmp', 'some_file.jpg'))
+ FileUtils.touch(tmp_file)
+ end
+
+ after do
+ FileUtils.rm(tmp_file)
end
it 'does not add files from /uploads/tmp' do