草庐IT

python_stubs

全部标签

ruby - 你如何在 Rspec 中模拟/ stub 反引号系统调用?

我有一个使用反引号的方法,但stub不适用于它。它正在拉取ls的结果:classTestHelperdefself.test_method`ls`endendrspec测试:describeTestHelperdodescribe'.test_method'dosubject{described_class.test_method}before{Kernel.stub(:`).and_return("test_dir")}it{expect(subject).toeql("test_dir")}endend 最佳答案 TestHel

Ruby 相当于 Python 的 "array[i:]"选择 i 之后的所有数组元素?

我发现自己想要类似Python的东西ary=[1,2,3,4,5,6,7,8]ary[2:]#=>[3,4,5,6,7,8]这些天所有的时间。解决方案最终总是多行且丑陋。我想知道最优雅的解决方案可能是什么,因为我的不值得展示。 最佳答案 使用Array#drop2.1.0:019>ary.drop(2)=>[3,4,5,6,7,8] 关于Ruby相当于Python的"array[i:]"选择i之后的所有数组元素?,我们在StackOverflow上找到一个类似的问题:

ruby - Rspec any_instance.stub 为 nil :NilClass exception 引发未定义的方法 `any_instance_recorder_for'

这是我正在测试的包含在Foo.rb中的类:classFoodefbarreturn2endend这是Foo_spec.rb中包含的我的测试:require"./Foo.rb"describe"Foo"dobefore(:all)doputs"#{Foo==nil}"Foo.any_instance.stub(:bar).and_return(1)endit"shouldpassthis"dof=Foo.newf.bar.shouldeq1endend我得到以下输出:falseFFailures:1)FooShouldpassthisFailure/Error:Foo.any_insta

ruby-on-rails - 请求规范中的 stub 身份验证

我正在寻找做this的方法但在要求规范。我需要登录和注销double或instance_double来设计而不是实际的ActiveModel/ActiveRecord。通过使用wiki页面中的代码:moduleRequestSpecHelpersdefsign_in(user=double('user'))ifuser.nil?allow(request.env['warden']).toreceive(:authenticate!).and_throw(:warden,{:scope=>:user})allow(controller).toreceive(:current_user)

Ruby 与法拉第 stub ,无法让它工作

对不起标题,我太沮丧了,现在想不出更好的东西。我有一个类,Judge,它有一个方法#stats。此stats方法应该向api发送GET请求并获取一些数据作为响应。我正在尝试对此进行测试并stub统计方法,以便我不执行实际请求。这是我的测试的样子:describeJudgedodescribe'.stats'docontext'whensuccess'dosubject{Judge.stats}it'returnsstats'doallow(Faraday).toreceive(:get).and_return('somedata')expect(subject.status).toeq

ruby-on-rails - 使用摩卡,有没有办法用很多参数 stub ?

假设我有这门课classFoodefbar(param1=nil,param2=nil,param3=nil):bar1ifparam1:bar2ifparam2:bar3ifparam3endend我可以使用stubwholebar方法:Foo.any_instance.expects(:bar).at_least_once.returns(false)但是,如果我只想在bar方法的param1为真时stub,我找不到办法:我也看了with,和has_entry,好像只适用于单个参数。我期待这样的功能。Foo.any_instance.expects(:bar).with('true

ruby - 在 RSpec 中 stub RestClient 响应

我有以下规范...describe"successfulPOSTon/user/create"doit"shouldredirecttodashboard"dopost'/user/create',{:name=>"dave",:email=>"dave@dave.com",:password=>"another_pass"}last_response.shouldbe_redirectfollow_redirect!last_request.url.should=='http://example.org/dave/dashboard'endendSinatra应用程序的post方法使

Python表白比心

本文介绍运用Python中的turtle库控制函数画比心图。  文章目录一、效果展示二、代码详解1导入库2播放音乐3画手4定义画心的函数5定义写名字的函数并实现动态画心  一、效果展示  在介绍代码之前,先来看下本文的实现效果。可以参考Pinstaller(Python打包为exe文件)一文把Python文件转化成exe,发给未安装Python的Ta。    二、代码详解  Python绘制比心图的原理是:应用turtle库控制函数绘制不同曲线构成比心图。  1导入库  首先导入本文需要加载的库,如果你有些库还没有安装,导致运行代码时报错,可以在AnacondaPrompt中用pip方法安装。

python字符串操作

str.upper()‪‬‪‬‪‬‪‬‪‬‮‬‫‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‪‬转换字符串str中所有字母为大写‪‬‪‬‪‬‪‬‪‬‮‬‫‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‪‬str.lower()‪‬‪‬‪‬‪‬‪‬‮‬‫‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬

ruby-on-rails - Rspec 模拟, 'expect' 也可以 stub 方法作为副作用吗?

我正在尝试理解继承应用程序中的测试,我需要一些帮助。有很多像这样的规范组(查看规范):let(:job_post){FactoryGirl.create(:job_post)}#...beforedoexpect(view).toreceive(:job_post).at_least(:once).and_return(job_post)endit"shouldrenderwithouterror"dorenderend...job_post是在Controller上定义的辅助方法。(是的,他们可以使用@instance变量,而我正在重构它)。现在,在我看来,在beforeblock中