class RSpec::Rails::Matchers::ActiveJob::Base

def at(time_or_date)

def at(time_or_date)
  case time_or_date
  when Time then @at = Time.at(time_or_date.to_f)
  else
    @at = time_or_date
  end
  self
end