我是rspec的初学者。
案例示例:
我的控制器:
def index
id=params[:id];
@nameTest=id+'test';
end
需要测试:
- 身份证的价值
- @nameTest 的值
我的代码失败:
it "basic test for index" do
get :index,:id => 'myid'
response.code.should eq("200")
assigns(:id).should be_kind_of('myid')
assigns(@nameTest).should be_kind_of('myidtest')
end
谢谢