summaryrefslogtreecommitdiff
path: root/vendor/gems/couchrest_session_store/test/session_document_test.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-03-23 21:53:29 +0100
committerAzul <azul@riseup.net>2016-05-02 08:23:33 -0300
commit16da29309cdb117e2ac40eb93286fc265c3135d5 (patch)
treef77a85db57d7c644567f1f0a6bae64aaa7701a7e /vendor/gems/couchrest_session_store/test/session_document_test.rb
parent065859b90cc5ef403b8f47bd5394b343e556cc4d (diff)
vendoring couchrest session store for development
0.4.0 has not been released yet. But travis needs it to run. So i vendor it for now. Will remove it again when the build is getting stable.
Diffstat (limited to 'vendor/gems/couchrest_session_store/test/session_document_test.rb')
-rw-r--r--vendor/gems/couchrest_session_store/test/session_document_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/gems/couchrest_session_store/test/session_document_test.rb b/vendor/gems/couchrest_session_store/test/session_document_test.rb
new file mode 100644
index 0000000..2125d10
--- /dev/null
+++ b/vendor/gems/couchrest_session_store/test/session_document_test.rb
@@ -0,0 +1,27 @@
+require File.expand_path(File.dirname(__FILE__) + '/test_helper')
+
+class SessionDocumentTest < MiniTest::Test
+
+ def test_storing_session
+ sid = '1234'
+ session = {'a' => 'b'}
+ options = {}
+ doc = CouchRest::Session::Document.build_or_update(sid, session, options)
+ doc.save
+ doc.fetch(sid)
+ assert_equal session, doc.to_session
+ end
+
+ def test_storing_session_with_conflict
+ sid = '1234'
+ session = {'a' => 'b'}
+ options = {}
+ doc = CouchRest::Session::Document.build_or_update(sid, session, options)
+ doc2 = CouchRest::Session::Document.build_or_update(sid, session, options)
+ doc.save
+ doc2.save
+ doc2.fetch(sid)
+ assert_equal session, doc2.to_session
+ end
+
+end