aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/disk_site_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/disk_site_test.rb b/test/disk_site_test.rb
index 7713189e0a..afae5d4683 100644
--- a/test/disk_site_test.rb
+++ b/test/disk_site_test.rb
@@ -19,6 +19,14 @@ class ActiveFile::DiskSiteTest < ActiveSupport::TestCase
FIXTURE_FILE.rewind
end
+ test "uploading" do
+ key = SecureRandom.base58(24)
+ data = "Something else entirely!"
+ @site.upload(key, StringIO.new(data))
+
+ assert_equal data, @site.download(key)
+ end
+
test "downloading" do
assert_equal FIXTURE_FILE.read, @site.download(FIXTURE_KEY)
end