]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/metaparse/test/push_front_c.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / metaparse / test / push_front_c.cpp
CommitLineData
7c673cae
FG
1// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
b32b8144
FG
6#include <boost/metaparse/config.hpp>
7#if BOOST_METAPARSE_STD >= 2011
8# include <boost/metaparse/v1/cpp11/impl/push_front_c.hpp>
9#else
10# include <boost/metaparse/v1/cpp98/impl/push_front_c.hpp>
11#endif
12
7c673cae
FG
13#include <boost/metaparse/string.hpp>
14
15#include <boost/mpl/equal_to.hpp>
16#include <boost/mpl/char.hpp>
17#include <boost/mpl/assert.hpp>
18
19#include "test_case.hpp"
20
21BOOST_METAPARSE_TEST_CASE(push_front_c)
22{
23 using boost::metaparse::v1::impl::push_front_c;
24 using boost::metaparse::string;
25
26 using boost::mpl::equal_to;
27 using boost::mpl::char_;
28
29 typedef string<'h','e','l','l','o'> hello;
30
31 // test_push_front
32 BOOST_MPL_ASSERT((
33 equal_to<hello, push_front_c<string<'e','l','l','o'>, 'h'>::type>
34 ));
35
36 // test_push_front_to_empty
37 BOOST_MPL_ASSERT((equal_to<string<'x'>, push_front_c<string<>, 'x'>::type>));
38}
39
40