コード例 #1
0
 def test_subscriptions_channel_id(self):
     with self.settings(RESTCLIENTS_NWS_DAO_CLASS=
                        'restclients.dao_implementation.nws.File'):
         nws = NWS()
         subscriptions = nws.get_subscriptions_by_channel_id(
             "b779df7b-d6f6-4afb-8165-8dbe6232119f")
         self.assertEquals(len(subscriptions), 5)
コード例 #2
0
 def _subscription_channel_id_live(self):
     with self.settings(RESTCLIENTS_NWS_DAO_CLASS=
                        'restclients.dao_implementation.nws.Live'):
         nws = NWS()
         subscriptions = nws.get_subscriptions_by_channel_id(
             "ce1d46fe-1cdf-4c5a-a316-20f6c99789b8")
         self.assertTrue(len(subscriptions) > 0)
コード例 #3
0
 def test_subscriptions_channel_id(self):
     with self.settings(
             RESTCLIENTS_NWS_DAO_CLASS='restclients.dao_implementation.nws.File'):
         nws = NWS()
         subscriptions = nws.get_subscriptions_by_channel_id("b779df7b-d6f6-4afb-8165-8dbe6232119f")
         self.assertEquals(len(subscriptions), 5)
コード例 #4
0
 def _subscription_channel_id_live(self):
     with self.settings(
             RESTCLIENTS_NWS_DAO_CLASS='restclients.dao_implementation.nws.Live'):
         nws = NWS()
         subscriptions = nws.get_subscriptions_by_channel_id("ce1d46fe-1cdf-4c5a-a316-20f6c99789b8")
         self.assertTrue(len(subscriptions) > 0)