()
| 13 | |
| 14 | #[test] |
| 15 | fn test_simple_create_schema() { |
| 16 | let fixture = CliFixture::empty().expect("Failed to create CLI fixture"); |
| 17 | let schema_name = fixture.schema_name(); |
| 18 | |
| 19 | let result = fixture.assert_query_succeeds(&format!("CREATE SCHEMA /{};", schema_name)); |
| 20 | assert!(!result.is_empty()); |
| 21 | } |
| 22 | |
| 23 | #[test] |
| 24 | fn test_catalog_persistence() { |
nothing calls this directly
no test coverage detected