引数から値を得る shared_context, 引数がなく let で値を得る shared_examples
いつも忘れるのでメモ
引数から値を得る shared_context
shared_context :validation do |type, expected|
end
include_context :validation, :empty, false
引数がなく let で値を得る shared_examples
shared_examples :validation do
if expected
else
end
end
it_behaves_like :validation do
let(:expected) { true }
end
Author And Source
この問題について(引数から値を得る shared_context, 引数がなく let で値を得る shared_examples), 我々は、より多くの情報をここで見つけました https://qiita.com/SaitoJP/items/c507b388e6dc821427ff著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .