コード例 #1
0
ファイル: test_dispatcher.py プロジェクト: enigma/watson
 def test_invalid_dispatcher(self):
     sample = SampleDispatcherAware()
     sample.dispatcher = 'test'
コード例 #2
0
ファイル: test_dispatcher.py プロジェクト: erhuabushuo/watson
 def test_invalid_dispatcher(self):
     sample = SampleDispatcherAware()
     sample.dispatcher = 'test'
コード例 #3
0
ファイル: test_dispatcher.py プロジェクト: enigma/watson
 def test_is_aware(self):
     sample = SampleDispatcherAware()
     assert isinstance(sample, EventDispatcherAware)
     assert isinstance(sample.dispatcher, EventDispatcher)
コード例 #4
0
 def test_invalid_dispatcher(self):
     with raises(TypeError):
         sample = SampleDispatcherAware()
         sample.dispatcher = 'test'