profiles_controller_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. require File.dirname(__FILE__) + '/../../spec_helper'
  2. describe Admin::ProfilesController do
  3.   describe "#index" do
  4.     it 'should render index' do
  5.       users(:tobi).profile.label.should == 'admin'
  6.       request.session = { :user => users(:tobi).id }
  7.       get :index
  8.       response.should render_template('index')
  9.     end
  10.   end
  11.   # TODO: Make RESTful
  12.   describe "successful POST to index" do
  13.     it "redirects to profile page" do
  14.       request.session = { :user => users(:tobi).id }
  15.       post :index, :user => {:email => 'foo@bar.com'}
  16.       response.should render_template('index')
  17.     end
  18.   end
  19. end