gpt4 book ai didi

rspec 检查数组元素中的数字实例

转载 作者:行者123 更新时间:2023-12-02 21:17:53 25 4
gpt4 key购买 nike

如何检查数组的元素是否只包含数字(整数)?

 describe "#draw" do
it "returns an array" do
expect(@lottery_tip.draw).to be_a_kind_of Array
end
it "has six elements" do
expect(@lottery_tip.draw.count).to eq(6)
end
it "s elements are only numbers" do
expect(@lottery_tip.draw).to ???
end
end

我的简单 LotteryTip 类有效,但我想知道如何检查返回数组中元素的类型...

最佳答案

您可以使用 all matcher .

expect(@tip.draw).to all(be_an(Integer))

关于rspec 检查数组元素中的数字实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29409139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com