()
| 361 | |
| 362 | #[test] |
| 363 | fn arg_inner_matches_temp_id() { |
| 364 | let km = PyKernelModule::new(); |
| 365 | let x = km.arg("x"); |
| 366 | let temp_id = *x.temp_args.keys().next().unwrap(); |
| 367 | assert_eq!(x.inner, Expr::ArgRef(temp_id)); |
| 368 | } |
| 369 | |
| 370 | #[test] |
| 371 | fn args_returns_correct_count() { |