Sha256: bb4ee0fb3488e5bcba0a050d896d7fc71a9415a5a8699923a1cf3fe29ba8c8c6

Contents?: true

Size: 337 Bytes

Versions: 2

Compression:

Stored size: 337 Bytes

Contents

require "spec_helper"

describe CommitLineBuilder do
	before do
		g = Git.open(".")
		l = Git::Lib.new(g)
		opts = ["--pretty=raw"]
		@data = l.command_lines('log',opts)
		@linebuilder = CommitLineBuilder.new(@data,0)
		@linebuilder.parse
	end
	specify { @data.size.should be > 1 }
	specify { @linebuilder.object.should_not be nil }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
git-hack-0.0.2 spec/commit_line_builder_spec.rb
git-hack-0.0.1 spec/commit_line_builder_spec.rb