Sha256: 97f4838e3442e45721ccd0c4b9dd9d410942693ed1976786753e64285bb959af
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
require File.expand_path(File.dirname(__FILE__) + "/spec_helper") require "grit" describe "Ginatra" do describe "Repo" do def current_path File.expand_path(File.dirname(__FILE__)) end before do @repo_list = Ginatra::RepoList @ginatra_repo = @repo_list.find("test") @grit_repo = Grit::Repo.new(File.join(current_path, "..", "repos", "test"), {}) @commit = @ginatra_repo.commit("095955b6402c30ef24520bafdb8a8687df0a98d3") end it "should have a name" do @ginatra_repo.name == "test" end it "should have a param for urls" do @ginatra_repo.param == 'test' end it "should have a description" do @ginatra_repo.description =~ /description file for this repository and set the description for it./ end it "should have an array of commits that match the grit array of commits limited to 10 items" do @ginatra_repo.commits === @grit_repo.commits @ginatra_repo.commits.length == 10 end it "should be the same thing using #find or #new" do @repo_list.find("test") == Ginatra::Repo.new(File.join(current_path, "..", "repos", "test")) end it "should contain this commit" do @commit.refs.should_not be_empty end it "should not contain this other commit" do lambda { @ginatra_repo.commit("totallyinvalid") }.should raise_error(Ginatra::InvalidCommit, "Could not find a commit with the id of totallyinvalid") end it "should have a list of commits" do @ginatra_repo.commits.should_not be_blank end it "should raise an error when asked to invert itself" do lambda { @ginatra_repo.commits("master", -1) }.should raise_error(Ginatra::Error, "max_count cannot be less than 0") end it "should be able to add refs to a commit" do @commit.refs = [] @ginatra_repo.add_refs(@commit) @commit.refs.should_not be_empty end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ginatra-2.2.6 | spec/repo_spec.rb |