()
| 379 | |
| 380 | #[test] |
| 381 | fn test_select_star() -> ResultTest<()> { |
| 382 | let (db, input) = create_data(1)?; |
| 383 | |
| 384 | let result = run_for_testing(&db, "SELECT * FROM inventory")?; |
| 385 | |
| 386 | assert_eq!(result, input.data, "Inventory"); |
| 387 | Ok(()) |
| 388 | } |
| 389 | |
| 390 | #[test] |
| 391 | fn test_limit() -> ResultTest<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…