describe Server::SessionController do it "should create session" do Server::LoginController.stub(:authenitcate).and_return(session_ID) Server::SessionController.... Server::SessionController.... endend
如何摆脱可重复的Server命名空间?
解决方法 RSpec Book( http://pragprog.com/book/achbd/the-rspec-book)提供了一个解决方案:3 module Codebreaker4 describe Game do5 describe "#start" do
… The second statement declares a Ruby module named Codebreaker.This isn’t necessary in
order to run the specs,but it provIDes some convenIEnces. For
example,we don’t have to fully qualify Game on line 4.
因此,尝试将您的规范放在服务器模块中.HTH.
总结以上是内存溢出为你收集整理的ruby – 在特定命名空间中测试全部内容,希望文章能够帮你解决ruby – 在特定命名空间中测试所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)