Sha256: 5fd63c12125daba567bc6a96464840977f6e6d4af02f18256b6712bb0b2c2f0e

Contents?: true

Size: 442 Bytes

Versions: 11

Compression:

Stored size: 442 Bytes

Contents

# frozen_string_literal: true

# File: spec_helper.rb
# Purpose: utility file that is loaded by all our RSpec files

require 'pp'    # Use pretty-print for debugging purposes
require 'rspec' # Use the RSpec framework


RSpec.configure do |config|
  config.expect_with :rspec do |c|
    # Disable the `should` syntax...
    c.syntax = :expect
  end

  # Display stack trace in case of failure
  config.full_backtrace = true
end

# End of file

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rley-0.8.11 spec/spec_helper.rb
rley-0.8.10 spec/spec_helper.rb
rley-0.8.09 spec/spec_helper.rb
rley-0.8.08 spec/spec_helper.rb
rley-0.8.06 spec/spec_helper.rb
rley-0.8.05 spec/spec_helper.rb
rley-0.8.03 spec/spec_helper.rb
rley-0.8.02 spec/spec_helper.rb
rley-0.8.01 spec/spec_helper.rb
rley-0.8.00 spec/spec_helper.rb
rley-0.7.08 spec/spec_helper.rb