()
| 929 | |
| 930 | #[test] |
| 931 | fn test_mount_mount() { |
| 932 | let mut t = Tester::default(); |
| 933 | t.run(r#"MOUNT "memory://" AS "abc""#).check(); |
| 934 | |
| 935 | let mut exp_info = BTreeMap::default(); |
| 936 | exp_info.insert("MEMORY", "memory://"); |
| 937 | exp_info.insert("ABC", "memory://"); |
| 938 | assert_eq!(exp_info, t.get_storage().borrow().mounted()); |
| 939 | } |
| 940 | |
| 941 | #[test] |
| 942 | fn test_mount_errors() { |