gitlab-org--gitlab-foss/spec/lib/gitlab/diff/file_spec.rb

26 lines
642 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Gitlab::Diff::File do
include RepoHelpers
let(:project) { create(:project) }
let(:commit) { project.repository.commit(sample_commit.id) }
let(:diff) { commit.diffs.first }
let(:diff_file) { Gitlab::Diff::File.new(project, commit, diff) }
describe :diff_lines do
let(:diff_lines) { diff_file.diff_lines }
it { diff_lines.size.should == 30 }
it { diff_lines.first.should be_kind_of(Gitlab::Diff::Line) }
end
describe :blob_exists? do
it { diff_file.blob_exists?.should be_true }
end
describe :mode_changed? do
it { diff_file.mode_changed?.should be_false }
end
end