Move enum tests into a new file

There are more enum tests than 'constants and functions'.
This commit is contained in:
Dean Moldovan
2016-08-13 00:57:24 +02:00
parent 382db5b2e7
commit a9a37b4e31
6 changed files with 131 additions and 107 deletions

View File

@@ -30,6 +30,7 @@ void init_ex_stl_binder_vector(py::module &);
void init_ex_eval(py::module &);
void init_ex_custom_exceptions(py::module &);
void init_ex_numpy_dtypes(py::module &);
void init_ex_enum(py::module &);
void init_issues(py::module &);
#if defined(PYBIND11_TEST_EIGEN)
@@ -74,6 +75,7 @@ PYBIND11_PLUGIN(pybind11_tests) {
init_ex_eval(m);
init_ex_custom_exceptions(m);
init_ex_numpy_dtypes(m);
init_ex_enum(m);
init_issues(m);
#if defined(PYBIND11_TEST_EIGEN)