summaryrefslogtreecommitdiff
path: root/spec/models/repository_spec.rb
blob: 6c3e221f34372200cf8af9171d8b38578f61be10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe Repository do
  include RepoHelpers

  let(:repository) { create(:project).repository }

  describe :branch_names_contains do
    subject { repository.branch_names_contains(sample_commit.id) }

    it { should include('master') }
    it { should_not include('feature') }
    it { should_not include('fix') }
  end

  describe :last_commit_for_path do
    subject { repository.last_commit_for_path(sample_commit.id, '.gitignore').id }

    it { should eq('c1acaa58bbcbc3eafe538cb8274ba387047b69f8') }
  end
end