Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 RSPEC 中有一些匹配器可以执行以下操作:
string.should eql("value" OR "value_2")
比较字符串是否等于“value”或“value_2”的匹配器?
谢谢你的时间!:D
好。我用另一种方法解决了这个问题。
首先,使用可能的值创建一个数组:
possible_values_of_string["value", "value_2"]
然后:
possible_values_of_string.should include(string_to_evaluate)