File: spec_helper.rb

package info (click to toggle)
ruby-openid-connect 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 468 kB
  • ctags: 225
  • sloc: ruby: 2,819; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#require 'simplecov'

#SimpleCov.start do
 # add_filter 'spec'
#end

require 'rspec'
require 'rspec/its'
require 'openid_connect'

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = [:should, :expect]
  end
end

require 'helpers/crypto_spec_helper'
require 'helpers/webmock_helper'