started adding more pack tests and packing of temp ops

This commit is contained in:
Brian Gough 2016-01-28 16:56:32 +00:00
parent 77cafa36af
commit 612079ef8a
2 changed files with 17 additions and 1 deletions

View file

@ -1,7 +1,9 @@
#!/bin/bash
#!/bin/bash -x
# find all the docHistories with unpacked ops and pack them
# need to keep track of docs already done
HOST=${1:-"localhost:3015"}
T=${2:-10}

View file

@ -230,3 +230,17 @@ describe "PackManager", ->
it "should call the callback", ->
@callback.called.should.equal true
describe "convertDocsToPacks", ->
describe "with several small packs", ->
beforeEach ->
@ops = [
{ op: "op-3", meta: "meta-3", v: 3},
{ op: "op-4", meta: "meta-4", v: 4}
]
@PackManager.convertDocsToPacks @ops, @callback
# it "should create a single pack", ->
# @callback.
it "should call the callback", ->
@callback.called.should.equal true