subproject libs/assign/test ;

SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;

test-suite "assign"
    : [ run
            basic.cpp
        : basic_usage
       ]         
    : [ run
            array.cpp
        : array
       ]         
    : [ run
            std.cpp
        : std
       ]         
    : [ run
            list_of.cpp
        : list_of
       ]         
    : [ run
            list_inserter.cpp
        : list_inserter
       ]         
    : [ run
            list_of_workaround.cpp
        : list_of_workaround
       ] 
    : [ run
            email_example.cpp
        : email
       ] 
     : [ run
            my_vector_example.cpp
        : my_vector
       ] 
    : [ run 
            multi_index_container.cpp
        : multi_index_container
      ]
             
       ;


