mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
31 lines
956 B
C++
31 lines
956 B
C++
#include <document/document.h>
|
|
#include <test/jail.h>
|
|
|
|
void test_inode ()
|
|
{
|
|
test::jail_t jail;
|
|
|
|
jail.touch("file_1.txt");
|
|
document::document_ptr doc_1 = document::create(jail.path("file_1.txt"));
|
|
|
|
path::move(jail.path("file_1.txt"), jail.path("file_2.txt"));
|
|
document::document_ptr doc_2 = document::create(jail.path("file_2.txt"));
|
|
|
|
jail.ln("file_3.txt", "file_2.txt");
|
|
document::document_ptr doc_3 = document::create(jail.path("file_3.txt"));
|
|
|
|
OAK_ASSERT(*doc_1 == *doc_2);
|
|
OAK_ASSERT(*doc_2 == *doc_3);
|
|
|
|
OAK_ASSERT_EQ(path::name(doc_1->path()), "file_1.txt");
|
|
OAK_ASSERT_EQ(path::name(doc_2->path()), "file_1.txt");
|
|
OAK_ASSERT_EQ(path::name(doc_3->path()), "file_1.txt");
|
|
|
|
document::document_ptr doc_4 = document::create(jail.path("future.txt"));
|
|
jail.touch("future.txt");
|
|
document::document_ptr doc_5 = document::create(jail.path("future.txt"));
|
|
|
|
OAK_ASSERT(*doc_4 == *doc_5);
|
|
OAK_ASSERT_EQ(path::name(doc_4->path()), "future.txt");
|
|
}
|