标签: spinach
更改a Spinach steps file中定义的菠菜步骤时,运行使用该步骤的所有功能非常有用。
e.g:
我有meta property="og:url" content="http://www.mynewwebsite.com"/
meta property="og:url" content="http://www.mynewwebsite.com"/
在step 'I have an empty array' do..
step 'I have an empty array' do..
我想为每个features/steps/test_how_spinach_works.rb文件运行spinach,其中包括:
features/steps/test_how_spinach_works.rb
spinach
.feature。
.feature
答案 0 :(得分:3)
假设您使用bash:
安装ack。
更新您的ack.rc以包含Spinach功能:
ack.rc
--type-set=spinach=.feature`
将以下内容添加到I have an empty array:
I have an empty array
function ack-spinach() { ack --spinach --print0 -l '$1' | xargs -0 spinach }
您现在可以使用以下命令运行所有功能:
bashrc