def test_base_binding_force(self):
     t = TestTarget()
     c = ViewCollection(1,2,3,4,5,6,7,8,9,10)
     t << c
     c._Internal_Collection = ['a','b','c']
     c.update_bindings()
     assert t.Values == ('a','b','c')
 def test_base_binding_force(self):
     t = TestTarget()
     c = ViewCollection(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
     t << c
     c._Internal_Collection = ['a', 'b', 'c']
     c.update_bindings()
     assert t.Values == ('a', 'b', 'c')