Sha256: 53c44423fa29d55808a644affaacc02defb1d5077c2740d3e2f409834c9204d6
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
require 'spec_helper' require 'r10k/git/cache' describe R10K::Git::Cache do let(:subclass) do Class.new(described_class) do def self.bare_repository Class.new { def initialize(*args) end } end end end subject { subclass.new('git://some/git/remote') } describe "updating the cache" do it "only updates the cache once" do expect(subject).to receive(:sync!).exactly(1).times subject.sync subject.sync end end describe "methods on the repository" do def expect_delegation(method) expect(subject.repo).to receive(method) subject.send(method) end it "delegates #git_dir" do expect_delegation(:git_dir) end it "delegates #branches" do expect_delegation(:branches) end it "delegates #tags" do expect_delegation(:tags) end it "delegates #exist?" do expect_delegation(:exist?) end it "aliases #cached? to #exist?" do expect(subject.repo).to receive(:exist?) subject.cached? end end end
Version data entries
5 entries across 5 versions & 1 rubygems