aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/config/json_config_source_test.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-25 13:13:53 +0900
committernsfisis <nsfisis@gmail.com>2026-06-25 23:47:47 +0900
commitb183daf4afd3f4845cb0be483d3660cd6e394fad (patch)
tree9a1b3c5e3f263d314fdb99d5bd0497f6c66ef820 /crates/shirabe/tests/config/json_config_source_test.rs
parent1b42bff7d960082d7fbd6158ec226e38899c0ca9 (diff)
downloadphp-shirabe-b183daf4afd3f4845cb0be483d3660cd6e394fad.tar.gz
php-shirabe-b183daf4afd3f4845cb0be483d3660cd6e394fad.tar.zst
php-shirabe-b183daf4afd3f4845cb0be483d3660cd6e394fad.zip
test: un-ignore JsonManipulator/JsonConfigSource tests now passing
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/tests/config/json_config_source_test.rs')
-rw-r--r--crates/shirabe/tests/config/json_config_source_test.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/shirabe/tests/config/json_config_source_test.rs b/crates/shirabe/tests/config/json_config_source_test.rs
index 974c5da..200a621 100644
--- a/crates/shirabe/tests/config/json_config_source_test.rs
+++ b/crates/shirabe/tests/config/json_config_source_test.rs
@@ -61,7 +61,6 @@ fn json_config_source(config: &std::path::Path) -> JsonConfigSource {
JsonConfigSource::new(Rc::new(RefCell::new(json_file)), false)
}
-#[ignore]
#[test]
fn test_add_repository() {
let tear_down = set_up();
@@ -85,7 +84,6 @@ fn test_add_repository() {
);
}
-#[ignore]
#[test]
fn test_add_repository_as_list() {
let tear_down = set_up();
@@ -109,7 +107,6 @@ fn test_add_repository_as_list() {
);
}
-#[ignore]
#[test]
fn test_add_repository_with_options() {
let tear_down = set_up();
@@ -144,7 +141,6 @@ fn test_add_repository_with_options() {
);
}
-#[ignore]
#[test]
fn test_remove_repository() {
let tear_down = set_up();
@@ -160,7 +156,6 @@ fn test_remove_repository() {
assert_file_equals(&fixture_path("composer-empty.json"), &config);
}
-#[ignore]
#[test]
fn test_add_packagist_repository_with_false_value() {
let tear_down = set_up();
@@ -177,7 +172,6 @@ fn test_add_packagist_repository_with_false_value() {
);
}
-#[ignore]
#[test]
fn test_remove_packagist() {
let tear_down = set_up();
@@ -343,7 +337,6 @@ fn provide_add_link_data() -> Vec<(PathBuf, &'static str, &'static str, &'static
]
}
-#[ignore]
#[test]
fn test_add_link() {
for (source_file, r#type, name, value, compare_against) in provide_add_link_data() {
@@ -476,7 +469,6 @@ fn provide_remove_link_data() -> Vec<(PathBuf, &'static str, &'static str, PathB
]
}
-#[ignore]
#[test]
fn test_remove_link() {
for (source_file, r#type, name, compare_against) in provide_remove_link_data() {