From 245d1e8c4b9936f032581776a7bab3c0fa67f442 Mon Sep 17 00:00:00 2001 From: Jordan Stephens Date: Thu, 21 Aug 2014 22:54:01 -0400 Subject: [PATCH] create tmp cache dir in spec if it doesn't exist --- spec/with_timed_cache_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/with_timed_cache_spec.rb b/spec/with_timed_cache_spec.rb index c0a54a8..4cc609a 100644 --- a/spec/with_timed_cache_spec.rb +++ b/spec/with_timed_cache_spec.rb @@ -5,6 +5,7 @@ before(:all) do @cache_directory = "spec/data/tmp" + FileUtils.mkdir_p(@cache_directory) clean_cache_directory end