예제 #1
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_get_index_keys(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_index_keys()
예제 #2
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_delete(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.delete("something")
예제 #3
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_get_real_local_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_real_local_timestamp("something")
예제 #4
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_get_uri(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_uri()
예제 #5
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_get(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get("something")
예제 #6
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_unlock(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.unlock()
예제 #7
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_flush_index(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.flush_index()
예제 #8
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_get_all_real_local_timestamps(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.get_all_real_local_timestamps()
예제 #9
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_set_remote_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.set_remote_timestamp("test", None)
예제 #10
0
파일: test_clients.py 프로젝트: troylar/S4
 def test_set_index_local_timestamp(self):
     client = SyncClient()
     with pytest.raises(NotImplementedError):
         client.set_index_local_timestamp("something", None)