10 lines
245 B
Ruby
10 lines
245 B
Ruby
require 'spec_helper'
|
|
|
|
describe Job::ProcessPhoto do
|
|
it 'calls process on the photo' do
|
|
photo = mock()
|
|
photo.should_receive(:process)
|
|
Photo.should_receive(:find).with(1).and_return(photo)
|
|
Job::ProcessPhoto.perform(1)
|
|
end
|
|
end
|