diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-19 09:09:38 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-19 09:09:38 +0000 |
commit | 38de2aa494589f6e250a1b11862cbab83c2ae4d1 (patch) | |
tree | 02794d498d732eea1d8be8e10454e007b4e6e0fa /spec/frontend/fixtures | |
parent | b8520295072b31b11a1ad89770815aae17411979 (diff) | |
download | gitlab-ce-38de2aa494589f6e250a1b11862cbab83c2ae4d1.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/fixtures')
-rw-r--r-- | spec/frontend/fixtures/raw.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/frontend/fixtures/raw.rb b/spec/frontend/fixtures/raw.rb index 337067121d0..7e42fa61e8e 100644 --- a/spec/frontend/fixtures/raw.rb +++ b/spec/frontend/fixtures/raw.rb @@ -13,6 +13,9 @@ RSpec.describe 'Raw files', '(JavaScript fixtures)' do clean_frontend_fixtures('blob/balsamiq/') clean_frontend_fixtures('blob/notebook/') clean_frontend_fixtures('blob/pdf/') + clean_frontend_fixtures('blob/text/') + clean_frontend_fixtures('blob/binary/') + clean_frontend_fixtures('blob/images/') end after do @@ -38,4 +41,16 @@ RSpec.describe 'Raw files', '(JavaScript fixtures)' do it 'blob/pdf/test.pdf' do @blob = project.repository.blob_at('e774ebd33', 'files/pdf/test.pdf') end + + it 'blob/text/README.md' do + @blob = project.repository.blob_at('e774ebd33', 'README.md') + end + + it 'blob/images/logo-white.png' do + @blob = project.repository.blob_at('e774ebd33', 'files/images/logo-white.png') + end + + it 'blob/binary/Gemfile.zip' do + @blob = project.repository.blob_at('e774ebd33', 'Gemfile.zip') + end end |