コード例 #1
0
ファイル: test_ping.py プロジェクト: pombredanne/rucio
class TestPingClient():

    def setup(self):
        self.client = PingClient()

    def tearDown(self):
        pass

    def test_rucio_ping(self):
        """ RUCIO(CLIENTS): test a rucio ping """
        ret = self.client.ping()
        assert_true('version' in ret)
        assert_is_instance(ret, dict)
コード例 #2
0
ファイル: test_ping.py プロジェクト: ricsxn/rucio
 def test_rucio_ping(self):
     """ RUCIO(CLIENTS): test a rucio ping """
     client = PingClient()
     ret = client.ping()
     assert 'version' in ret
     assert isinstance(ret, dict)
コード例 #3
0
ファイル: test_ping.py プロジェクト: pombredanne/rucio
 def setup(self):
     self.client = PingClient()