mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
17 lines
265 B
C++
17 lines
265 B
C++
#include <pqxx/zview>
|
|
|
|
#include "../test_helpers.hxx"
|
|
|
|
|
|
namespace
|
|
{
|
|
void test_zview_literal()
|
|
{
|
|
using pqxx::operator"" _zv;
|
|
|
|
PQXX_CHECK_EQUAL(("foo"_zv), pqxx::zview{"foo"}, "zview literal is broken.");
|
|
}
|
|
|
|
PQXX_REGISTER_TEST(test_zview_literal);
|
|
} // namespace
|