Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'spec_helper'
- describe Api::TracksController do
- let(:tracks) { FactoryGirl.create_list(:track, 10) }
- describe '#index' do
- it 'should respond with all tracks as JSON' do
- json_tracks = tracks.to_json
- get :index
- response.body.should == json_tracks
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment