Sha256: 8452d0625e36675f34f0d63bffcab06f933c6bfe25dc43a8052c464f7c8f75a3

Contents?: true

Size: 326 Bytes

Versions: 2

Compression:

Stored size: 326 Bytes

Contents

require "spec_helper"

describe LineBuilder do
	before do
		g = Git.open(".")
		l = Git::Lib.new(g)
		opts = ["--pretty=raw"]
		@data = l.command_lines('log',opts)
		@linebuilder = LineBuilder.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/line_builder_spec.rb
git-hack-0.0.1 spec/line_builder_spec.rb