saasbook

movie_spec.1.rb

Mar 1st, 2014
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.24 KB | None | 0 0
  1. require 'spec_helper'
  2.  
  3. describe Movie do
  4.   describe 'searching Tmdb by keyword' do
  5.     it 'should call Tmdb with title keywords' do
  6.       Tmdb::Movie.should_receive(:find).with('Inception')
  7.       Movie.find_in_tmdb('Inception')
  8.     end
  9.   end
  10. end
Add Comment
Please, Sign In to add comment