Rspec基础

初次接触Rspec 发现网上基本资料少的可怜 找到点啥先记下备用~

assert_template 测试是否装载了正确的view

assert_tag 'form',:attributes=>{:action=>'/admin/....'} 测试View中是否有这表单,form也可以是div,td,input等html元素。

assert_response :redirect

assert_redirected_to :action=>'index' 重定向

assigns(:author).first_name :assign是辅助方法,检查author实例变量的赋值。它是个测试辅助方法,用来存取最后请求的动作里所有实例变量的赋值。

follow_redirect Rails自带的测试辅助方法,它使测试用例可以跟随控制器里的redirect_to调用到哪个目标页面。


[b]测试 render :text => "string" [/b]

response.body.should == "string"


[b]测试 render :nothing => true[/b]
response.should have_text(" ")

[b]
测试ajax请求[/b]

describe 'get/post 你的action的名称 using ajax' do
it 'should render template 模板名称' do
xhr :post, :action的名称, 其它需要传递给action的值的hash
response.should render_template('渲染的模板')
end
end

describe 'get/post 你的action的名称 using html' do
it 'should reject access using html' do
get/post ::action的名称, 其它需要传递给action的值的hash
response.response.should == 406
end
end
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值