summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/diff/formatters/image_formatter_spec.rb
blob: 2f99febe04e6205e0407013bffdd40aafa2eeae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'spec_helper'

describe Gitlab::Diff::Formatters::ImageFormatter do
  it_behaves_like "position formatter" do
    let(:base_attrs) do
      {
        base_sha: 123,
        start_sha: 456,
        head_sha: 789,
        old_path: 'old_image.png',
        new_path: 'new_image.png',
        position_type: 'image'
      }
    end

    let(:attrs) do
      base_attrs.merge(width: 100, height: 100, x: 1, y: 2)
    end
  end
end