File: spec_helper.rb

package info (click to toggle)
ruby-packetfu 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,520 kB
  • sloc: ruby: 8,344; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
puts "rspec #{RSpec::Core::Version::STRING}"
if RSpec::Core::Version::STRING[0] == '3'
  require 'rspec/its'
  RSpec.configure do |config|
    #config.raise_errors_for_deprecations!
    config.expect_with :rspec do |c|
      c.syntax = [:expect, :should]
    end
  end
end

require 'packetfu/common'