diff options
Diffstat (limited to 'crates/shirabe/tests/package/loader/array_loader_test.rs')
| -rw-r--r-- | crates/shirabe/tests/package/loader/array_loader_test.rs | 190 |
1 files changed, 158 insertions, 32 deletions
diff --git a/crates/shirabe/tests/package/loader/array_loader_test.rs b/crates/shirabe/tests/package/loader/array_loader_test.rs index 79b5d78..2dc4f3e 100644 --- a/crates/shirabe/tests/package/loader/array_loader_test.rs +++ b/crates/shirabe/tests/package/loader/array_loader_test.rs @@ -8,37 +8,163 @@ fn set_up() -> ArrayLoader { // ArrayLoader::load parses version/link constraints through a look-around regex the regex // crate cannot compile. -macro_rules! stub { - ($name:ident) => { - #[test] - #[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] - fn $name() { - let _loader = set_up(); - todo!() - } - }; +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_self_version() { + let _loader = set_up(); + todo!() } -stub!(test_self_version); -stub!(test_type_default); -stub!(test_normalized_version_optimization); -stub!(test_parse_dump_default_load_config); -stub!(test_parse_dump_true_load_config); -stub!(test_parse_dump_false_load_config); -stub!(test_package_with_branch_alias); -stub!(test_package_aliasing_without_branch_alias); -stub!(test_abandoned); -stub!(test_not_abandoned); -stub!(test_plugin_api_version_are_kept_as_declared); -stub!(test_plugin_api_version_does_support_self_version); -stub!(test_parse_links_integer_target); -stub!(test_parse_links_invalid_version); -stub!(test_none_string_version); -stub!(test_none_string_source_dist_reference); -stub!(test_branch_alias_integer_index); -stub!(test_package_links_require); -stub!(test_package_links_require_invalid); -stub!(test_package_links_replace); -stub!(test_package_links_replace_invalid); -stub!(test_support_string_value); -stub!(test_invalid_version); +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_type_default() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_normalized_version_optimization() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_parse_dump_default_load_config() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_parse_dump_true_load_config() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_parse_dump_false_load_config() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_with_branch_alias() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_aliasing_without_branch_alias() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_abandoned() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_not_abandoned() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_plugin_api_version_are_kept_as_declared() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_plugin_api_version_does_support_self_version() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_parse_links_integer_target() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_parse_links_invalid_version() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_none_string_version() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_none_string_source_dist_reference() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_branch_alias_integer_index() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_links_require() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_links_require_invalid() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_links_replace() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_package_links_replace_invalid() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_support_string_value() { + let _loader = set_up(); + todo!() +} + +#[test] +#[ignore = "ArrayLoader::load parses constraints via a look-around regex the regex crate cannot compile"] +fn test_invalid_version() { + let _loader = set_up(); + todo!() +} |
