File: spec_helper.rb

package info (click to toggle)
ruby-valid-email 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 288 kB
  • sloc: ruby: 631; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 246 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
$:.unshift File.expand_path('../../lib',__FILE__)
require 'valid_email'

RSpec.configure do |config|
  config.order = :random
  config.raise_errors_for_deprecations!
  Kernel.srand config.seed

  if ENV['CI']
    config.warnings = true
  end
end