Add authentication and User model

* Add User model
* Add SessionsController
* Add password authentication on User
* Request authentication for all actions except sign in
* Add some helpers for ApplicationController
* Update features to work with mandatory authentication
This commit is contained in:
Thibault Jouan
2011-08-04 09:50:17 +00:00
parent 18b254e3d1
commit 7bf4d4c5f9
22 changed files with 276 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
require 'spec_helper'
describe TracksController do
before do
controller.current_user = Factory.create(:user)
end
describe 'GET show' do
it 'assigns the requested track as @track' do
track = Factory.create(:track)