Sha256: 1b877357697574df933cf822c2e69d7e78ccbc5275d3a64de28b2f8e80299579

Contents?: true

Size: 661 Bytes

Versions: 3

Compression:

Stored size: 661 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
      @dex_graph2 = Pacer.titan('../pacer-titan/config/inmemory.properties')
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pacer-titan-0.0.3-java lib/pacer-titan/rspec.rb
pacer-titan-0.0.2-java lib/pacer-titan/rspec.rb
pacer-titan-0.0.1-java lib/pacer-titan/rspec.rb