ruby – 在特定命名空间中测试

ruby – 在特定命名空间中测试,第1张

概述我正在尝试在命名空间测试一些类,目前我有这样的代码: describe Server::SessionController do it "should create session" do Server::LoginController.stub(:authenitcate).and_return(session_id) Server::SessionController. 我正在尝试在命名空间中测试一些类,目前我有这样的代码:

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 – 在特定命名空间中测试所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1290127.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存