Exemple #1
0
 def test_remote_build(self):
     """
     Should have a remote build that just runs build
     """
     h = Hub()
     called = []
     h.build = called.append
     o = dict(foo='bar')
     h.remote_build(o)
     self.assertEqual(called, [o])