diff options
author | Valentin Anger <syrupthinker@gryphno.de> | 2020-09-11 22:40:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 22:40:48 +0200 |
commit | e3319f34a6ece36eab3138eae83c8d0e18fcc07c (patch) | |
tree | c194f400d91d11b9a29416e1697d00d8cf2e3628 /cli/tests/integration_tests.rs | |
parent | a3282aa9ed749f2e80618c6e2f25047d9a2bb2d8 (diff) |
feat(unstable): Support data: urls (#5157)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index ec13f7380..dac257e8b 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2394,6 +2394,23 @@ itest!(info_type_import { output: "info_type_import.out", }); +itest!(data_import { + args: "test --reload --unstable data_import_test.js", + output: "data_import_test.out", +}); + +itest!(data_import_invalid { + args: "test --reload --unstable data_import_invalid.js", + output: "data_import_invalid.out", + exit_code: 1, +}); + +itest!(data_import_origin_upgrade { + args: "test --reload --unstable data_import_origin_upgrade.js", + output: "data_import_origin_upgrade.out", + exit_code: 1, +}); + #[test] fn cafile_env_fetch() { use url::Url; |