summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 09:30:37 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 09:30:37 +0100
commit932101ae44d6fc43e9facff898ed769d1d1099ec (patch)
tree35d2611b0354fdd9406719d3f41390334f25d8da /test
parenta5fbde90e35c3ed38a70377249a0e0ecd91901ab (diff)
feat: API additions and rope_fwd fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'test')
-rw-r--r--test/rope_test/crope.test.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/rope_test/crope.test.cpp b/test/rope_test/crope.test.cpp
index 061da98..4565900 100644
--- a/test/rope_test/crope.test.cpp
+++ b/test/rope_test/crope.test.cpp
@@ -12,12 +12,13 @@
BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty)
{
- auto rope = ocl::crope("");
+ auto rope = ocl::tproc::crope("");
BOOST_TEST(rope.empty() == true);
}
BOOST_AUTO_TEST_CASE(allocator_should_not_succeed_in_empty)
{
- auto rope = ocl::crope("foobar");
+ auto rope = ocl::tproc::crope("foobar");
+ // rope += ".txt";
BOOST_TEST(rope.empty() == false);
}