Sha256: f9688b99ac330fd9a0cbecb4e1203d69b2650a9f26f3524cdce2534f156c9eb8
Contents?: true
Size: 375 Bytes
Versions: 1
Compression:
Stored size: 375 Bytes
Contents
require 'spec_helper' describe Applicants::ApplicantNudger do describe ".nudge" do it "should send reminder to all applicants that need a reminder" do applicant = double('applicant') applicant.should_receive(:send_reminder) Applicants::Applicant.stub(:needs_reminder).and_return([applicant]) Applicants::ApplicantNudger.nudge end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
applicants-0.11.0 | spec/lib/applicants/applicant_nudger_spec.rb |