pull/915/head
Rick Carlino 2018-07-16 14:09:03 -05:00
parent 71e0c7edf0
commit ab0ec6c971
2 changed files with 7 additions and 2 deletions

View File

@ -36,6 +36,4 @@ describe AmqpLogParser do
expect(data.valid?).to be(false)
expect(data.problems).to include AmqpLogParser::TOO_OLD
end
it "passes all other logs"
end

View File

@ -37,6 +37,13 @@ describe Resources::PreProcessor do
end.to raise_error(Mutations::ValidationException, "body must be a JSON object")
end
describe Resources::Service do
it "handles failure" do
body = "[]"
chan = CHANNEL_TPL % props
Resources::Service.process(DeliveryInfoShim.new(chan), body)
end
end
describe Resources::Job do
it "allows nesting?" do