Ejemplo n.º 1
0
 def test_get_index_keys(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_index_keys()
Ejemplo n.º 2
0
 def test_delete(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.delete("something")
Ejemplo n.º 3
0
 def test_get_real_local_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_real_local_timestamp("something")
Ejemplo n.º 4
0
 def test_get_uri(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_uri()
Ejemplo n.º 5
0
 def test_get(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get("something")
Ejemplo n.º 6
0
 def test_unlock(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.unlock()
Ejemplo n.º 7
0
 def test_flush_index(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.flush_index()
Ejemplo n.º 8
0
 def test_get_all_real_local_timestamps(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_all_real_local_timestamps()
Ejemplo n.º 9
0
 def test_set_remote_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.set_remote_timestamp("test", None)
Ejemplo n.º 10
0
 def test_set_index_local_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.set_index_local_timestamp("something", None)