()
| 419 | |
| 420 | #[test] |
| 421 | fn copyup_delete() { |
| 422 | let (_dir, cat) = open_catalog(); |
| 423 | cat.put_clone_copyup("db1:0:users", 1, 10).unwrap(); |
| 424 | cat.delete_clone_copyup("db1:0:users", 1).unwrap(); |
| 425 | assert_eq!(cat.get_clone_copyup("db1:0:users", 1).unwrap(), None); |
| 426 | } |
| 427 | |
| 428 | #[test] |
| 429 | fn copyup_delete_all_for_collection() { |
nothing calls this directly
no test coverage detected