()
| 787 | |
| 788 | #[test] |
| 789 | fn pymethods_get_temp_args() { |
| 790 | let e = PyExpr::named(Expr::ArgRef(10), "x".to_string(), 10); |
| 791 | let ta = e.get_temp_args(); |
| 792 | assert_eq!(ta.len(), 1); |
| 793 | assert_eq!(ta.get(&10), Some(&"x".to_string())); |
| 794 | } |
| 795 | |
| 796 | #[test] |
| 797 | fn pymethods_get_referenced_args() { |
nothing calls this directly
no test coverage detected