14 lines
297 B
Ruby
14 lines
297 B
Ruby
require File.dirname(__FILE__) + '/../spec_helper'
|
|
|
|
describe UsersController do
|
|
#render_views
|
|
#fixtures here?
|
|
|
|
it 'should, after logging in redirect to the dashboard page' do
|
|
pending
|
|
#go to /login
|
|
#fill in the form
|
|
#stub create action
|
|
#should get a redirect
|
|
end
|
|
end
|