File: spec_helper.rb

package info (click to toggle)
ruby-filepath 0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 248 kB
  • ctags: 95
  • sloc: ruby: 1,683; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This is free software released into the public domain (CC0 license).

LIB_DIR = File.expand_path(File.join(File.dirname(__FILE__), %w[.. lib]))
$LOAD_PATH.unshift(LIB_DIR) unless $LOAD_PATH.include?(LIB_DIR)

require 'rspec'

require 'filepath'

RSpec.configure do |config|
	config.filter_run_excluding :broken => true
end

FIXTURES_DIR = File.join(%w{spec fixtures})