Exemplo n.º 1
0
 def testAfterExecute(self):
     """Test that _afterExecute is being called."""
     l = TestLayer("test2")
     self.assertFalse(l.afterExecuteSet)
     l.afterExecute()
     self.assertTrue(l.afterExecuteSet)
Exemplo n.º 2
0
 def testAfterExecute(self):
     """Test that after execute is being run by the plugin manager."""
     l = TestLayer("test2")
     l.afterExecute()
     self.assertTrue(blueprint.plugins.test_plugin.Init.AfterExecute)
Exemplo n.º 3
0
 def testAfterExecute(self):
     """Test that after execute is being run by the plugin manager."""
     l = TestLayer("test2")
     l.afterExecute()
     self.assertTrue(blueprint.plugins.test_plugin.Init.AfterExecute)
Exemplo n.º 4
0
 def testAfterExecute(self):
     """Test that _afterExecute is being called."""
     l = TestLayer("test2")
     self.assertFalse(l.afterExecuteSet)
     l.afterExecute()
     self.assertTrue(l.afterExecuteSet)