end
# Returns list of nodes in the specified branch
- def nodes_in_branch(branch, path=nil, identifier_from=nil, identifier_to=nil, options={})
- p1 = scm_iconv(@path_encoding, 'UTF-8', path)
+ def nodes_in_branch(branch, options={})
hg_args = ['rhlog', '--template', '{node|short}\n', '--rhbranch', CGI.escape(branch)]
- hg_args << '--from' << CGI.escape(hgrev(identifier_from))
- hg_args << '--to' << CGI.escape(hgrev(identifier_to))
+ hg_args << '--from' << CGI.escape(branch)
+ hg_args << '--to' << '0'
hg_args << '--limit' << options[:limit] if options[:limit]
- hg_args << CGI.escape(hgtarget(p1)) unless path.blank?
hg(*hg_args) { |io| io.readlines.map { |e| e.chomp } }
end
'test_branch.latin-1',
'test-branch-00',
].each do |bra|
- nib0 = @adapter.nodes_in_branch(bra, '', bra, 0)
+ nib0 = @adapter.nodes_in_branch(bra)
assert nib0
- nib1 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 1)
+ nib1 = @adapter.nodes_in_branch(bra, :limit => 1)
assert_equal 1, nib1.size
case bra
when 'branch (1)[2]&,%.-3_4'
assert_equal 3, nib0.size
assert_equal nib0[0], 'afc61e85bde7'
- nib2 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 2)
+ nib2 = @adapter.nodes_in_branch(bra, :limit => 2)
assert_equal 2, nib2.size
assert_equal nib2[1], '933ca60293d7'
when @branch_char_1
assert_equal 2, nib0.size
assert_equal nib0[1], '08ff3227303e'
- nib2 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 1)
+ nib2 = @adapter.nodes_in_branch(bra, :limit => 1)
assert_equal 1, nib2.size
assert_equal nib2[0], '7bbf4c738e71'
end