Sha256: b054941b64adad6679baa530e9f53335619647d4389f6ba218b4ad8e63c90d63

Contents?: true

Size: 400 Bytes

Versions: 1

Compression:

Stored size: 400 Bytes

Contents

# frozen_string_literal: true

require 'pry-byebug'

module SpecHelpers
  module SetMonkeyAction
    def set_action(action)
      @action = action
    end
  end
end

# Use :should in stead of :expect
RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = :should
  end
  config.mock_with :rspec do |c|
    c.syntax = :should
  end
  # config.raise_errors_for_deprecations!
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
MonkeyEngine-2.0.0 spec/spec_helper.rb