12 lines
226 B
Ruby
12 lines
226 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
|
|
post 'index'
|
|
puts "boner!"
|
|
end
|
|
|
|
end
|