()
| 1134 | |
| 1135 | #[test] |
| 1136 | fn test_select_column() -> ResultTest<()> { |
| 1137 | let (db, _) = create_data(1)?; |
| 1138 | |
| 1139 | let result = run_for_testing(&db, "SELECT inventory_id FROM inventory")?; |
| 1140 | |
| 1141 | let row = product![1u64]; |
| 1142 | |
| 1143 | assert_eq!(result, vec![row], "Inventory"); |
| 1144 | Ok(()) |
| 1145 | } |
| 1146 | |
| 1147 | #[test] |
| 1148 | fn test_where() -> ResultTest<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…