Last active
October 18, 2016 14:48
-
-
Save lkrych/e321f52cf63ff9f4d8c1c944e50cd4aa to your computer and use it in GitHub Desktop.
How to specify a mock in rspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RSpec.describe MoviesController, type: :controller do | |
| before (:each) do | |
| @mock_movie_attributes = {:title => 'Space Balls', :release_date => '24/6/1987', :rating => 'PG'} | |
| @mock_movie = FactoryGirl.create(:movie) | |
| end | |
| ### All the unit tests | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment