Sha256: 2d6569d3ac6d31834dc569fc8b01808fa2d5711e830ef258392a0eda9f6bd830
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
require 'wukong' require 'wukong/spec_helpers' require 'wukong/source' require_relative './support/shared_context_for_graphs' require_relative './support/shared_examples_for_shortcuts' require_relative './support/shared_examples_for_builders' require_relative './support/shared_context_for_reducers' RSpec.configure do |config| config.mock_with :rspec include Wukong::SpecHelpers def root @root ||= Pathname.new(File.expand_path('../..', __FILE__)) end def local_runner *args runner(Wukong::Local::LocalRunner, 'wu-local', *args) end def generic_runner *args # the wu-generic program doesn't have to exist for this Runner to # work if it's called from Ruby code runner(Wukong::Runner, 'wu-generic', *args) end def wu_local *args command('wu-local', *args) end def wu_source *args command('wu-source', *args) end def wu *args command('wu', *args) end # FIXME Why is this here? config.treat_symbols_as_metadata_keys_with_true_values = true end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
ul-wukong-4.1.1 | spec/spec_helper.rb |
ul-wukong-4.1.0 | spec/spec_helper.rb |
wukong-4.0.0 | spec/spec_helper.rb |