()
| 945 | |
| 946 | #[test] |
| 947 | fn test_alloc_inode() { |
| 948 | let mut txn = MockCrdtTxn::new(); |
| 949 | |
| 950 | let inode1 = txn.alloc_inode().unwrap(); |
| 951 | let inode2 = txn.alloc_inode().unwrap(); |
| 952 | |
| 953 | assert_ne!(inode1, inode2); |
| 954 | } |
| 955 | } |
nothing calls this directly
no test coverage detected