コード例 #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)