File: spec_helper.rb

package info (click to toggle)
ruby-humanize 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,108 kB
  • sloc: ruby: 1,779; makefile: 7; sh: 1
file content (11 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
require 'rubygems'
require 'humanize'
require 'rspec'
require 'timeout'

RSpec.configure do |config|
  config.around(:each) do |example|
    Timeout.timeout(5, &example)
    Humanize.reset_config
  end
end