diff options
Diffstat (limited to 'paludis/elike_dep_parser_TEST.cc')
-rw-r--r-- | paludis/elike_dep_parser_TEST.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paludis/elike_dep_parser_TEST.cc b/paludis/elike_dep_parser_TEST.cc index 2bb20be68..ddc9c56c5 100644 --- a/paludis/elike_dep_parser_TEST.cc +++ b/paludis/elike_dep_parser_TEST.cc @@ -70,6 +70,7 @@ namespace test_cases n::on_any() = std::bind(&handler, std::ref(out), "any<", "", "", "", ""), n::on_arrow() = std::bind(&handler, std::ref(out), "a<", _1, ", ", _2, ">"), n::on_error() = std::bind(&handler, std::ref(out), "error<", _1, ">", "", ""), + n::on_exactly_one() = std::bind(&handler, std::ref(out), "x<", "", "", "", ""), n::on_label() = std::bind(&handler, std::ref(out), "label<", _1, "", "", ""), n::on_pop() = std::bind(&handler, std::ref(out), ">", "", "", "", ""), n::on_should_be_empty() = std::bind(&handler, std::ref(out), "EMPTY", "", "", "", ""), @@ -97,6 +98,7 @@ namespace test_cases n::on_any() = std::bind(&handler, std::ref(out), "any<", "", "", "", ""), n::on_arrow() = std::bind(&handler, std::ref(out), "a<", _1, ", ", _2, ">"), n::on_error() = std::bind(&handler, std::ref(out), "error<", _1, ">", "", ""), + n::on_exactly_one() = std::bind(&handler, std::ref(out), "x<", "", "", "", ""), n::on_label() = std::bind(&handler, std::ref(out), "label<", _1, "", "", ""), n::on_pop() = std::bind(&handler, std::ref(out), ">", "", "", "", ""), n::on_should_be_empty() = std::bind(&handler, std::ref(out), "EMPTY", "", "", "", ""), @@ -124,6 +126,7 @@ namespace test_cases n::on_any() = std::bind(&handler, std::ref(out), "any<", "", "", "", ""), n::on_arrow() = std::bind(&handler, std::ref(out), "a<", _1, ", ", _2, ">"), n::on_error() = std::bind(&handler, std::ref(out), "error<", _1, ">", "", ""), + n::on_exactly_one() = std::bind(&handler, std::ref(out), "x<", "", "", "", ""), n::on_label() = std::bind(&handler, std::ref(out), "label<", _1, "", "", ""), n::on_pop() = std::bind(&handler, std::ref(out), ">", "", "", "", ""), n::on_should_be_empty() = std::bind(&handler, std::ref(out), "EMPTY", "", "", "", ""), |