File: bare_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 (13 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'
require 'r10k/git/shellgit/bare_repository'

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

  let(:dirname) { 'bare-repo.git' }

  subject { described_class.new(basedir, dirname) }

  it_behaves_like 'a git repository'
  it_behaves_like 'a git bare repository'
end