aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests')
-rw-r--r--crates/shirabe/tests/application_test.rs1
-rw-r--r--crates/shirabe/tests/dependency_resolver/default_policy_test.rs15
-rw-r--r--crates/shirabe/tests/dependency_resolver/security_advisory_pool_filter_test.rs1
-rw-r--r--crates/shirabe/tests/dependency_resolver/solver_test.rs12
-rw-r--r--crates/shirabe/tests/json/json_manipulator_test.rs1
-rw-r--r--crates/shirabe/tests/platform/hhvm_detector_test.rs1
-rw-r--r--crates/shirabe/tests/repository/path_repository_test.rs3
7 files changed, 0 insertions, 34 deletions
diff --git a/crates/shirabe/tests/application_test.rs b/crates/shirabe/tests/application_test.rs
index 7a2a751..5a34316 100644
--- a/crates/shirabe/tests/application_test.rs
+++ b/crates/shirabe/tests/application_test.rs
@@ -76,7 +76,6 @@ fn test_dev_warning_suppressed_for_self_update() {
);
}
-#[ignore]
#[test]
fn test_process_isolation_works_multiple_times() {
let _tear_down = TearDown;
diff --git a/crates/shirabe/tests/dependency_resolver/default_policy_test.rs b/crates/shirabe/tests/dependency_resolver/default_policy_test.rs
index fafe0e2..aac6626 100644
--- a/crates/shirabe/tests/dependency_resolver/default_policy_test.rs
+++ b/crates/shirabe/tests/dependency_resolver/default_policy_test.rs
@@ -55,7 +55,6 @@ impl Drop for TearDown {
}
}
-#[ignore]
#[test]
fn test_select_single() {
let _tear_down = TearDown;
@@ -83,7 +82,6 @@ fn test_select_single() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest() {
let _tear_down = TearDown;
@@ -113,7 +111,6 @@ fn test_select_newest() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_picks_latest() {
let _tear_down = TearDown;
@@ -143,7 +140,6 @@ fn test_select_newest_picks_latest() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_picks_latest_stable_with_prefer_stable() {
let _tear_down = TearDown;
@@ -208,7 +204,6 @@ fn test_select_lowest_with_prefer_dev_over_prerelease() {
}
}
-#[ignore]
#[test]
fn test_select_lowest_prefers_prerelease_over_dev() {
let _tear_down = TearDown;
@@ -243,7 +238,6 @@ fn test_select_lowest_prefers_prerelease_over_dev() {
}
}
-#[ignore]
#[test]
fn test_select_lowest_with_prefer_stable_still_prefers_stable() {
let _tear_down = TearDown;
@@ -273,7 +267,6 @@ fn test_select_lowest_with_prefer_stable_still_prefers_stable() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_with_dev_picks_non_dev() {
let _tear_down = TearDown;
@@ -303,7 +296,6 @@ fn test_select_newest_with_dev_picks_non_dev() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_with_preferred_version_picks_preferred_version_if_available() {
let _tear_down = TearDown;
@@ -343,7 +335,6 @@ fn test_select_newest_with_preferred_version_picks_preferred_version_if_availabl
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_with_preferred_version_picks_newest_otherwise() {
let _tear_down = TearDown;
@@ -374,7 +365,6 @@ fn test_select_newest_with_preferred_version_picks_newest_otherwise() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_newest_with_preferred_version_picks_lowest_if_prefer_lowest() {
let _tear_down = TearDown;
@@ -405,7 +395,6 @@ fn test_select_newest_with_preferred_version_picks_lowest_if_prefer_lowest() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_repository_ordering_affects_priority() {
let _tear_down = TearDown;
@@ -580,7 +569,6 @@ fn constraint(operator: &str, version: &str) -> AnyConstraint {
SimpleConstraint::new(operator.to_string(), version.to_string(), None).into()
}
-#[ignore]
#[test]
fn test_select_all_providers() {
let _tear_down = TearDown;
@@ -627,7 +615,6 @@ fn test_select_all_providers() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_prefer_non_replacing_from_same_repo() {
let _tear_down = TearDown;
@@ -668,7 +655,6 @@ fn test_prefer_non_replacing_from_same_repo() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_prefer_replacing_package_from_same_vendor() {
let _tear_down = TearDown;
@@ -770,7 +756,6 @@ fn test_prefer_replacing_package_from_same_vendor() {
assert_eq!(expected, selected);
}
-#[ignore]
#[test]
fn test_select_lowest() {
let _tear_down = TearDown;
diff --git a/crates/shirabe/tests/dependency_resolver/security_advisory_pool_filter_test.rs b/crates/shirabe/tests/dependency_resolver/security_advisory_pool_filter_test.rs
index 7938657..12cc91c 100644
--- a/crates/shirabe/tests/dependency_resolver/security_advisory_pool_filter_test.rs
+++ b/crates/shirabe/tests/dependency_resolver/security_advisory_pool_filter_test.rs
@@ -201,7 +201,6 @@ fn test_dont_filter_packages_by_ignored_advisories() {
);
}
-#[ignore]
#[test]
fn test_dont_filter_packages_with_block_insecure_disabled() {
let audit_config = AuditConfig::new(
diff --git a/crates/shirabe/tests/dependency_resolver/solver_test.rs b/crates/shirabe/tests/dependency_resolver/solver_test.rs
index a688190..e42042a 100644
--- a/crates/shirabe/tests/dependency_resolver/solver_test.rs
+++ b/crates/shirabe/tests/dependency_resolver/solver_test.rs
@@ -715,7 +715,6 @@ fn test_solver_multi_package_name_version_resolution_is_independent_of_require_o
);
}
-#[ignore]
#[test]
fn test_solver_fix_locked() {
let fixtures = set_up();
@@ -734,7 +733,6 @@ fn test_solver_fix_locked() {
);
}
-#[ignore]
#[test]
fn test_solver_fix_locked_with_alternative() {
let fixtures = set_up();
@@ -754,7 +752,6 @@ fn test_solver_fix_locked_with_alternative() {
);
}
-#[ignore]
#[test]
fn test_solver_update_does_only_update() {
let fixtures = set_up();
@@ -796,7 +793,6 @@ fn test_solver_update_does_only_update() {
);
}
-#[ignore]
#[test]
fn test_solver_update_single() {
let fixtures = set_up();
@@ -820,7 +816,6 @@ fn test_solver_update_single() {
);
}
-#[ignore]
#[test]
fn test_solver_update_all() {
let fixtures = set_up();
@@ -879,7 +874,6 @@ fn test_solver_update_all() {
);
}
-#[ignore]
#[test]
fn test_solver_update_current() {
let fixtures = set_up();
@@ -901,7 +895,6 @@ fn test_solver_update_current() {
);
}
-#[ignore]
#[test]
fn test_solver_update_only_updates_selected_package() {
let fixtures = set_up();
@@ -930,7 +923,6 @@ fn test_solver_update_only_updates_selected_package() {
);
}
-#[ignore]
#[test]
fn test_solver_update_constrained() {
let fixtures = set_up();
@@ -957,7 +949,6 @@ fn test_solver_update_constrained() {
);
}
-#[ignore]
#[test]
fn test_solver_update_fully_constrained() {
let fixtures = set_up();
@@ -1207,7 +1198,6 @@ fn test_install_one_of_two_alternatives() {
);
}
-#[ignore]
#[test]
fn test_install_provider() {
let fixtures = set_up();
@@ -1308,7 +1298,6 @@ fn test_skip_replacer_of_existing_package() {
);
}
-#[ignore]
#[test]
fn test_no_install_replacer_of_missing_package() {
let fixtures = set_up();
@@ -1803,7 +1792,6 @@ fn test_use_replacer_if_necessary() {
);
}
-#[ignore]
#[test]
fn test_issue265() {
let fixtures = set_up();
diff --git a/crates/shirabe/tests/json/json_manipulator_test.rs b/crates/shirabe/tests/json/json_manipulator_test.rs
index d303346..768bebf 100644
--- a/crates/shirabe/tests/json/json_manipulator_test.rs
+++ b/crates/shirabe/tests/json/json_manipulator_test.rs
@@ -3490,7 +3490,6 @@ fn test_add_config_setting_escapes() {
}
#[test]
-#[ignore]
fn test_add_config_setting_works_from_scratch() {
let mut manipulator = JsonManipulator::new(
r#"{
diff --git a/crates/shirabe/tests/platform/hhvm_detector_test.rs b/crates/shirabe/tests/platform/hhvm_detector_test.rs
index 5bf96d2..7347bf7 100644
--- a/crates/shirabe/tests/platform/hhvm_detector_test.rs
+++ b/crates/shirabe/tests/platform/hhvm_detector_test.rs
@@ -13,7 +13,6 @@ fn set_up() -> HhvmDetector {
hhvm_detector
}
-#[ignore]
#[test]
fn test_hhvm_version_when_executing_in_hhvm() {
let mut hhvm_detector = set_up();
diff --git a/crates/shirabe/tests/repository/path_repository_test.rs b/crates/shirabe/tests/repository/path_repository_test.rs
index cea6a85..62abbfa 100644
--- a/crates/shirabe/tests/repository/path_repository_test.rs
+++ b/crates/shirabe/tests/repository/path_repository_test.rs
@@ -39,7 +39,6 @@ fn coordinates(pairs: Vec<(&str, PhpMixed)>) -> IndexMap<String, PhpMixed> {
map
}
-#[ignore]
#[test]
fn test_load_package_from_file_system_with_incorrect_path() {
let repository_url =
@@ -49,7 +48,6 @@ fn test_load_package_from_file_system_with_incorrect_path() {
assert!(repository.__get_packages().is_err());
}
-#[ignore]
#[test]
fn test_load_package_from_file_system_with_version() {
let repository_url = [
@@ -120,7 +118,6 @@ fn test_load_package_from_file_system_with_wildcard() {
);
}
-#[ignore]
#[test]
fn test_load_package_with_explicit_versions() {
let mut versions: IndexMap<String, PhpMixed> = IndexMap::new();