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.
test::unit で rspec の :let と :let! に相当するものを知っている人はいますか? 例えば
context "foo" do let(:user) { Factory(:user) } it "bar" do ... end end
test::unit テストを書くときは、この便利なパターンを使いたいです。 前もって感謝します。
次のようなものlet!:
let!
def user @user ||= Factory(:user) end
また、letテスト間でキャッシュしない の場合、上記と同じ定義と、 または のいずれかで以下が必要になりsetupますteardown。
let
setup
teardown
@user = nil