diff options
Diffstat (limited to 'test/server/bucket.rb')
-rw-r--r-- | test/server/bucket.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/server/bucket.rb b/test/server/bucket.rb index 5d45eedb2..ac418484e 100644 --- a/test/server/bucket.rb +++ b/test/server/bucket.rb @@ -21,8 +21,10 @@ class TestBucket < Test::Unit::TestCase # iterate across all of the files files.each { |file| spin + tempdir = tempfile() + Dir.mkdir(tempdir) name = File.basename(file) - tmppath = File.join(tmpdir,name) + tmppath = File.join(tempdir,name) @@tmpfiles << tmppath # copy the files to our tmp directory so we can modify them... |