File: thin_repository_spec.rb

package info (click to toggle)
r10k 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,228 kB
  • sloc: ruby: 18,180; makefile: 10; sh: 1
file content (14 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'
require 'r10k/git/shellgit/thin_repository'

describe R10K::Git::ShellGit::ThinRepository do
  include_context 'Git integration'

  let(:dirname) { 'working-repo' }

  let(:cacherepo) { R10K::Git::ShellGit::Cache.generate(remote) }

  subject { described_class.new(basedir, dirname, cacherepo) }

  it_behaves_like "a git thin repository"
end