File: spec_helper.rb

package info (click to toggle)
ruby-iso8601 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 316 kB
  • sloc: ruby: 2,156; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path(__dir__)
require 'iso8601'

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.color = true
  config.order = 'random'
  config.formatter = :documentation
  # config.fail_fast = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
end