about summary refs log tree commit homepage
path: root/test/test_mogilefs_integration_list_keys.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_mogilefs_integration_list_keys.rb')
-rw-r--r--test/test_mogilefs_integration_list_keys.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_mogilefs_integration_list_keys.rb b/test/test_mogilefs_integration_list_keys.rb
index bb3f94a..6c62e6b 100644
--- a/test/test_mogilefs_integration_list_keys.rb
+++ b/test/test_mogilefs_integration_list_keys.rb
@@ -23,6 +23,12 @@ class TestMogileFSIntegrationListKeys < TestMogIntegration
     end
   end
 
+  def test_list_keys_strange
+    @client.store_content("hello+world", nil, "HI")
+    rv = @client.list_keys
+    assert_equal "hello+world", rv[0][0]
+  end
+
   def test_each_key
     9.times { |i| @client.store_content("ek_#{i}", nil, i.to_s) }
     n = 0