()
| 810 | |
| 811 | #[test] |
| 812 | fn map_with_no_kwargs() { |
| 813 | let km = PyKernelModule::new(); |
| 814 | let x = km.arg("x"); |
| 815 | let spec = km.elementwise(x).unwrap(); |
| 816 | let map_spec = km.map(&spec, None).unwrap(); |
| 817 | assert!(map_spec.args.is_empty()); |
| 818 | } |
| 819 | |
| 820 | // --- elementwise duplicate arg name --- |
| 821 |
nothing calls this directly
no test coverage detected