summaryrefslogtreecommitdiffhomepage
path: root/test/rope_test/crope.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/rope_test/crope.test.cpp')
-rw-r--r--test/rope_test/crope.test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/rope_test/crope.test.cpp b/test/rope_test/crope.test.cpp
index 869331f..e1885f4 100644
--- a/test/rope_test/crope.test.cpp
+++ b/test/rope_test/crope.test.cpp
@@ -5,3 +5,13 @@
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
+#include <ocl/tproc/rope.hpp>
+
+#define BOOST_TEST_MODULE crope
+#include <boost/test/included/unit_test.hpp>
+
+BOOST_AUTO_TEST_CASE( allocator_should_succeed )
+{
+ auto rope = ocl::crope("foo");
+ BOOST_TEST( rope.empty() == false );
+}