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 中的单线,例如...
it { should validate_presence_of(:title) }
...产生以下描述性输出:
"should require title to be set"
此示例的匹配器中的代码行没有在输出前加上“should”,因此必须由 RSpec 注入。
我想为我的单行代码一起删除“应该”前缀,但找不到 RSpec 配置选项或 RSpec 代码中执行注入的位置。
过去有人用 RSpec 做过这个吗?