mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-27 11:51:43 +01:00
Add Job#load to load info from DB
This commit is contained in:
@@ -40,4 +40,17 @@ describe Crono::Job do
|
||||
expect(@crono_job.last_performed_at).to be_eql(job.last_performed_at)
|
||||
end
|
||||
end
|
||||
|
||||
describe "#load" do
|
||||
before do
|
||||
@saved_last_performed_at = job.last_performed_at = Time.now
|
||||
job.save
|
||||
end
|
||||
|
||||
it "should load info from DB" do
|
||||
@job = Crono::Job.new(TestJob, period)
|
||||
@job.load
|
||||
expect(@job.last_performed_at).to be_eql @saved_last_performed_at
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user