Exemplo n.º 1
0
 def test_provider_key(self):
     notify(TITLE, MESSAGE, provider_key='providerkey')
     self.verify_post(providerkey='providerkey')
Exemplo n.º 2
0
 def test_url(self):
     notify(TITLE, MESSAGE, url='foobar')
     self.verify_post(url='foobar')
Exemplo n.º 3
0
 def test_high_priority(self):
     notify(TITLE, MESSAGE, priority=2)
     self.verify_post(priority=2)
Exemplo n.º 4
0
 def test_low_priority(self):
     notify(TITLE, MESSAGE, priority=-2)
     self.verify_post(priority=-2)
Exemplo n.º 5
0
 def test_basic(self):
     notify(TITLE, MESSAGE)
     self.verify_post()