Sha256: 9a1cdcc5ba78be42404550fe3762a09aa71798443927b7cc90d7656203b5e123
Contents?: true
Size: 664 Bytes
Versions: 1
Compression:
Stored size: 664 Bytes
Contents
class RSpec::GraphRunner module Titan def all(usage_style = :read_write, indices = true, &block) super titan(usage_style, indices, &block) end def titan(usage_style = :read_write, indices = true, &block) for_graph('titan', usage_style, indices, false, titan_graph, titan_graph_2, nil, block) end protected def titan_graph return @titan_graph if @titan_graph @titan_graph = Pacer.titan('../pacer-titan/config/inmemory.properties') end def titan_graph_2 return @titan_graph_2 if @titan_graph_2 @titan_graph_2 = Pacer.titan('../pacer-titan/config/inmemory.properties') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pacer-titan-0.0.7-java | lib/pacer-titan/rspec.rb |