Sha256: fb42cc1ff20a9ed05edde846e813bdfb807e438f5e64453342e400e1e60900d1
Contents?: true
Size: 1.51 KB
Versions: 4
Compression:
Stored size: 1.51 KB
Contents
# frozen_string_literal: true require 'simplecov' $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'addressable/uri' require 'mongoid' require 'RMagick' require 'rspec' require 'hit_counter' Mongoid.load! 'config/mongoid.yml', :test Mongo::Logger.logger.level = ::Logger::WARN # Stub Rails root during tests. module Rails def self.root '.' end end require 'rake' # load rake tasks # https://dev.to/cassidycodes/how-to-test-rake-tasks-with-rspec-without-rails-3mhb module TaskFormat extend ActiveSupport::Concern included do let(:task_name) { self.class.top_level_description.sub(/\Arake /, '') } let(:tasks) { Rake::Task } # Make the Rake task available as `task` in your examples: subject(:task) { tasks[task_name] } end end RSpec.configure do |config| config.before(:suite) do Dir.glob('lib/tasks/*.rake').each { |r| Rake::DefaultLoader.new.load r } end # Tag Rake specs with `:task` metadata or put them in the spec/tasks dir config.define_derived_metadata(file_path: %r{/spec/tasks/}) do |metadata| metadata[:type] = :task end config.include TaskFormat, type: :task end # silence output RSpec.configure do |config| original_stderr = $stderr original_stdout = $stdout config.before(:all) do # Redirect stderr and stdout $stderr = File.open(File::NULL, 'w') $stdout = File.open(File::NULL, 'w') end config.after(:all) do $stderr = original_stderr $stdout = original_stdout end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
hit_counter-0.1.8 | spec/spec_helper.rb |
hit_counter-0.1.7 | spec/spec_helper.rb |
hit_counter-0.1.6 | spec/spec_helper.rb |
hit_counter-0.1.5 | spec/spec_helper.rb |