30
before
(下記参照)がRSpecのbefore :all
と同じかどうかは疑問です。場合によっては:each
でも:all
も指定されておらず、実際にはbefore
のことを私に混乱させることもあります。rspecのフックの前と同じ:all?
require 'spec_helper'
describe "this is a description" do
before do # vs. before :all or before :each
# do something...
end
end
もしあれば誰でもその違いを説明できます。ありがとう!