Sha256: a44f12d4868790fa93d100bbfb8d605f26f79bf176273159fe28bd73803aea22
Contents?: true
Size: 546 Bytes
Versions: 5
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' require 'rake' describe "blacklight:delete_old_searches" do before do @rake = Rake::Application.new Rake.application = @rake Rake.application.rake_require "../lib/railties/blacklight" Rake::Task.define_task(:environment) @task_name = "blacklight:delete_old_searches" end it "should call Search.delete_old_searches" do days_old = 7 allow(Search).to receive(:delete_old_searches).with(days_old) @rake[@task_name].invoke(days_old) end end
Version data entries
5 entries across 5 versions & 1 rubygems