예제 #1
0
    def test_list_to_array(self):
        """Test that the container array can be intialized with a list"""
        class Arr(VariableTree):
            a = Array()

        inputs = {'a': range(10)}
        obj = Arr()

        init_container(obj, **inputs)
예제 #2
0
    def test_array_to_list(self):
        """Test that the container list can be intialized with an array"""
        class Arr(VariableTree):
            a = List()

        inputs = {'a': np.arange(10)}
        obj = Arr()

        init_container(obj, **inputs)