summaryrefslogtreecommitdiff
path: root/spec/uploaders
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2018-09-10 17:41:51 +0200
committerJames Lopez <james@jameslopez.es>2018-09-10 17:41:51 +0200
commit78cd19631a5e02d30c22944a201d7074a3653ccf (patch)
tree0237cf6f459f5d79f81e92fb957a3e7c8f605d9f /spec/uploaders
parentfab15563963029c9f067d11d3d43fe3e6fac09a1 (diff)
downloadgitlab-ce-78cd19631a5e02d30c22944a201d7074a3653ccf.tar.gz
fix avatar uploader error
Diffstat (limited to 'spec/uploaders')
-rw-r--r--spec/uploaders/avatar_uploader_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/uploaders/avatar_uploader_spec.rb b/spec/uploaders/avatar_uploader_spec.rb
index b0468bc35ff..6aaec7a4fef 100644
--- a/spec/uploaders/avatar_uploader_spec.rb
+++ b/spec/uploaders/avatar_uploader_spec.rb
@@ -35,5 +35,13 @@ describe AvatarUploader do
it_behaves_like "migrates", to_store: described_class::Store::REMOTE
it_behaves_like "migrates", from_store: described_class::Store::REMOTE, to_store: described_class::Store::LOCAL
+
+ it 'sets the right absolute path' do
+ storage_path = Gitlab.config.uploads.storage_path
+ absolute_path = File.join(storage_path, upload.path)
+
+ expect(uploader.absolute_path.scan(storage_path).size).to eq(1)
+ expect(uploader.absolute_path).to eq(absolute_path)
+ end
end
end