()
| 192 | |
| 193 | #[test] |
| 194 | fn test_post_process() { |
| 195 | let src = r###"from in_process = {{ source('salesforce', 'in_process') }}"###; |
| 196 | let (pre_proc_text, ctx) = pre_process(src).unwrap(); |
| 197 | let post_proc_text = post_process(&pre_proc_text, ctx); |
| 198 | insta::assert_yaml_snapshot!(post_proc_text, @r#""from in_process = {{ source('salesforce', 'in_process') }}""#); |
| 199 | } |
| 200 | |
| 201 | #[test] |
| 202 | fn test_config_interpolation() { |
nothing calls this directly
no test coverage detected