summaryrefslogtreecommitdiff
path: root/spec/frontend/fixtures/raw.rb
blob: 211c4e7c0484058dd7469caccee95ecc188bae36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Raw files', '(JavaScript fixtures)' do
  include JavaScriptFixturesHelpers

  let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
  let(:project) { create(:project, :repository, namespace: namespace, path: 'raw-project') }
  let(:response) { @blob.data.force_encoding('UTF-8') }

  after do
    remove_repository(project)
  end

  it 'blob/notebook/basic.json' do
    @blob = project.repository.blob_at('6d85bb69', 'files/ipython/basic.ipynb')
  end

  it 'blob/notebook/markdown-table.json' do
    @blob = project.repository.blob_at('f6b7a707', 'files/ipython/markdown-table.ipynb')
  end

  it 'blob/notebook/worksheets.json' do
    @blob = project.repository.blob_at('6d85bb69', 'files/ipython/worksheets.ipynb')
  end

  it 'blob/notebook/math.json' do
    @blob = project.repository.blob_at('93ee732', 'files/ipython/math.ipynb')
  end

  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