Sha256: 915fc82fb13c81c947db2b6d869210156bcabbe002b033463c75af18b3b5653f

Contents?: true

Size: 432 Bytes

Versions: 9

Compression:

Stored size: 432 Bytes

Contents

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

require 'simplecov'


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

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

9 entries across 9 versions & 1 rubygems

Version Path
macros4cuke-0.4.08 spec/spec_helper.rb
macros4cuke-0.4.07 spec/spec_helper.rb
macros4cuke-0.4.06 spec/spec_helper.rb
macros4cuke-0.4.05 spec/spec_helper.rb
macros4cuke-0.4.04 spec/spec_helper.rb
macros4cuke-0.4.03 spec/spec_helper.rb
macros4cuke-0.4.02 spec/spec_helper.rb
macros4cuke-0.4.01 spec/spec_helper.rb
macros4cuke-0.4.00 spec/spec_helper.rb