草庐IT

datetime_index_test

全部标签

ruby - ruby 中的最后一个索引是否有等效的 Array#find_index ?

Array#find_index允许您找到第一个项目的索引等于一个对象,或者使传递给它的block评估为真Array#rindex可以让您找到等于object的最后一项的索引,但是有没有什么可以让您找到的索引使block传递给它的最后一项返回true?否则,我是否应该做类似的事情last_index=array.length-1-array.reverse.find_index{|item|item.is_wanted?} 最佳答案 在Ruby1.9.2中Array#rindex接受block:http://apidock.com/

ruby-on-rails - 我什么时候应该在 ruby​​/rails 中使用 DateTime 与日期、时间字段?

我目前有单独的game_date和game_time字段,由于时区问题,我很难将我的DateTime.now与串联的DateTime进行比较。我应该重新设计我的数据库以仅使用DateTime吗?我单独有一个时间字段,因为时间在某些时间点可以为NULL。通常的做法是什么,以及我应该如何解决以下时区的问题?now=DateTime.now@upcoming_games=[]@past_games=[]games.eachdo|game|game.game_time=DateTime.nowifgame.game_time.nil?dt=DateTime.parse("#{game.game

ruby-on-rails - Rails 中至少有 2 个 DateTime?

如何在Rails中找到2个DateTime对象中的最小值? 最佳答案 最rubyish的方式是使用[a,b].min但你也可以使用C风格(a>b)?b:a希望这对您有所帮助! 关于ruby-on-rails-Rails中至少有2个DateTime?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/5071334/

ruby - 如何使用 lib minitest 或 Test :Unit? 为单元测试着色

我想在我的开发环境中进行单元测试输出颜色。但是,我无法让它在Linux(Debian和Ubuntu)上运行。当我包含以下库时:require'minitest/autorun'require'minitest/unit'require'minitest/pride'我得到:/usr/local/rvm/gems/ruby-1.9.2-p136/gems/minitest-2.3.1/lib/minitest/pride.rb:35:in`':undefinedmethod`output'forMiniTest::Unit:Class(NoMethodError)由代码引起:MiniTe

ruby-on-rails - 使用 Rspec 和 Rack::Test 测试 REST-API 响应

我有点难过。我有以下集成测试:require"spec_helper"describe"/foods",:type=>:apidoincludeRack::Test::Methodslet(:current_user){create_user!}let(:host){"http://www.example.com"}beforedologin(current_user)@food=FactoryGirl.create_list(:food,10,:user=>current_user)endcontext"viewingallfoodsownedbyuser"doit"asJSON"d

ruby - DateTime.strptime 我做错了什么?

当我这样做时,我的ruby​​程序说我的日期无效:format="%D/%M/%Y%H:%M:%S:3N"date="21/03/201116:39:11.642"DateTime.strptime(time,format)这个我也试过:format="%D/%M/%Y%H:%M:%S:3"我得到的是这个:ArgumentError:invaliddatefrom/usr/local/lib/ruby/1.9.1/date.rb:1688:in`new_by_frags'from/usr/local/lib/ruby/1.9.1/date.rb:1713:in`strptime'fro

ruby - 获取名称错误 : `format' is not allowed as an instance variable name when testing instance variable with rspec

我有以下测试:let(:client){Descat::Client.new}describe'poblacio'doit'shouldsetformatcorrectly'doclient.poblacio('v1','json','dades')expect(client.instance_variable_get(:format)).toeq('json')endend我有以下正在测试的代码:moduleDescatclassClientBASE_URL='http://api.idescat.cat/'definitialize(attributes={})attributes

ruby-on-rails - 使用 Test::Unit 和 Shoulda 设置 Factory Girl

我正在尝试在RubyonRails中使用Test::Unit和Shoulda设置FactoryGirl。我已经安装了gem,在test/factories目录下创建了我的工厂文件,并在test/models目录下创建了我的spec文件。我得到的当前错误是“ArgumentError:没有这样的工厂:测试”,这让我相信没有加载test_factory.rb文件?关于我应该更改什么有任何想法吗?这是我的文件。#test/factories/test_factory.rbFactory.define:testdo|t|t.name'test_spotlight't.label'testspo

Ruby 数组 reverse_each_with_index

我想在数组上使用类似reverse_each_with_index的东西。例子:array.reverse_each_with_indexdo|node,index|putsnodeputsindexend我看到Ruby有each_with_index但它似乎没有相反的。还有其他方法吗? 最佳答案 如果你想要数组中元素的真实索引,你可以这样做['Seriously','Chunky','Bacon'].to_enum.with_index.reverse_eachdo|word,index|puts"index#{index}:#{

ruby - Test::Unit 是否仍然与 Rails 相关?

我正在以古老的方式学习Rails。以阅读AgileWebDevelopmentwithRails(第3版)作为起点。我目前在教测试的章节中。我也知道其他BDD测试框架,例如RSPec。所以我想知道RSpec、Cucumber、Shoulda等框架是否可以取代了解/使用Test::Unit的需要?它们本身是否相关并用于不同的目的?更新:由于我是测试新手,我也很想获得反馈,了解哪些资源对我熟悉不同的框架很有用。谢谢! 最佳答案 世界变了!检查并赞成@prusswan我认为Test::Unit仍然具有相关性,尽管围绕BDD和其他测试工具进