Sha256: 28e14038e191746329e9e04f333d40cdbb006078a8b6b622f6f56e30f1113114
Contents?: true
Size: 590 Bytes
Versions: 3
Compression:
Stored size: 590 Bytes
Contents
load 'bin/run_this_first' RSpec.configure do |config| config.add_setting :work_dir config.work_dir = '/tmp/jekyll_plugin_template' config.after(:suite) do FileUtils.rm_rf(config.work_dir) end config.before(:suite) do FileUtils.cp_r 'spec/run_this_first_data', config.work_dir, :verbose => true end config.filter_run :focus config.order = 'random' config.run_all_when_everything_filtered = true # See https://relishapp.com/rspec/rspec-core/docs/command-line/only-failures config.example_status_persistence_file_path = 'spec/first_status_persistence.txt' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jekyll_plugin_template-0.3.1 | spec/run_this_first_helper.rb |
jekyll_plugin_template-0.3.0 | spec/run_this_first_helper.rb |
jekyll_plugin_template-0.2.0 | spec/run_this_first_helper.rb |