ruby – 如何测试RSPEC中的类方法

前端之家收集整理的这篇文章主要介绍了ruby – 如何测试RSPEC中的类方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我写了一个简单的类方法Buy.get_days(string),并试图用不同的文本字符串输入进行测试.但是我觉得这很冗长.

>有没有更简洁的方法来测试以下内容
有没有
相当于我可以继续通过的方法主题
不同的参数和检查结果?
有没有办法避免不必要的描述呢?

谢谢

describe Buy do
   describe '.get_days' do
    it 'should get days' do
      Buy.get_days('Includes a 1-weeknight stay for up to 4 people')
      .should == 1
      end
    it 'should get days' do
      Buy.get_days('Includes a 1-night stay in a King Studio Room with stone fireplace')
      .should == 1
    end
    it 'should get days' do
      Buy.get_days('Includes 4 nights/5 days at the Finisterra Hotel for up to two adults and two children (staying in the same room)')
      .should == 4
    end
  end
end

解决方法

This是一个有趣的,但也许更钝的方式使用“主题”块与类方法.

编辑:由Wayback Archive报告的破碎的link,我认为容易受到同样的问题.

原文链接:https://www.f2er.com/ruby/271745.html

猜你在找的Ruby相关文章