Sha256: 0d11ec88fd6965445e91a75a6c5c538982912b131c44069210fdc2b1d89853d0
Contents?: true
Size: 1.99 KB
Versions: 2
Compression:
Stored size: 1.99 KB
Contents
require "spec_helper" describe Rubolite::Admin do subject { Rubolite::Admin.new } it "returns a client object" do expect(subject.client).to be_kind_of Rubolite::Client end context "location" do it "sets a location on initialization if given" do admin = Rubolite::Admin.new("./spec/support/gitolite-admin") expect(admin.path).to eq("./spec/support/gitolite-admin") end it "sets a location for a repository" do path_location = "./spec/support/gitolite-admin" subject.path = path_location expect(subject.path).to eq(path_location) end it "raises an error when the path is bad" do expect { subject.path = "./idontexist" }.to raise_error(Rubolite::Admin::InvalidPath) end it "raises an error when the path given isn't a git repository" do expect { subject.path = "./spec/support" }.to raise_error(Rubolite::Admin::InvalidGitRepo) end it "does not raise an error when the path given is a valid git repository" do expect { subject.path = "./spec/support/gitolite-admin" }.not_to raise_error(Rubolite::Admin::InvalidGitRepo) end end context "adding repos" do let(:repo) { Rubolite::Repo.new } it "adds a repo" do subject.add_repo repo subject.should have(1).repos end it "raises when trying to add a repo of a bad class" do expect { subject.add_repo "bad" }.to raise_error(Rubolite::Admin::InvalidRepo) end end context "config parsing" do it "#parser returns a parser object" do subject.path = "./spec/support/gitolite-admin" expect(subject.parser).to be_kind_of Rubolite::Parser end it "#writer returns a writer object" do subject.path = "./spec/support/gitolite-admin" expect(subject.writer).to be_kind_of Rubolite::Writer end end context "git" do subject { Rubolite::Admin.new("./spec/support/gitolite-admin") } specify "#git returns a grit repo instance" do expect(subject.git).to be_kind_of Git::Base end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubolite-0.0.3 | spec/lib/rubolite/admin_spec.rb |
rubolite-0.0.2 | spec/lib/rubolite/admin_spec.rb |