Sha256: f13b450c745cc82937c5dc662dec3178368890238b6548b7b9954cc99971ba81

Contents?: true

Size: 621 Bytes

Versions: 1

Compression:

Stored size: 621 Bytes

Contents

# frozen_string_literal: true

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

1 entries across 1 versions & 1 rubygems

Version Path
jekyll_plugin_template-0.1.3 spec/run_this_first_helper.rb