From 69d7005f186a05a4dde2bd1c77f83f8060a2907d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 26 Jun 2026 00:48:35 +0900 Subject: test: un-ignore 14 tests that pass against current implementations Discovered via a full --include-ignored run: these tests have real (non-stub) bodies and pass now, either because their blocker was since implemented (e.g. config_command's stream_set_blocking via libc) or the ignore was stale. Covers composer, config, forgejo_url, config_command, default_policy, transaction, installed_repository, github_driver, version_bumper. Co-Authored-By: Claude Opus 4.8 (1M context) --- crates/shirabe/tests/util/forgejo_url_test.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'crates/shirabe/tests/util') diff --git a/crates/shirabe/tests/util/forgejo_url_test.rs b/crates/shirabe/tests/util/forgejo_url_test.rs index 5c33596..3cdaac8 100644 --- a/crates/shirabe/tests/util/forgejo_url_test.rs +++ b/crates/shirabe/tests/util/forgejo_url_test.rs @@ -3,7 +3,6 @@ use shirabe::util::forgejo_url::ForgejoUrl; #[test] -#[ignore] fn test_create() { for repo_url in create_provider() { let forgejo_url = ForgejoUrl::try_from(Some(repo_url)); @@ -29,13 +28,11 @@ fn create_provider() -> Vec<&'static str> { } #[test] -#[ignore] fn test_create_invalid() { assert!(ForgejoUrl::create("https://example.org").is_err()); } #[test] -#[ignore] fn test_generate_ssh_url() { let forgejo_url = ForgejoUrl::create("git@codeberg.org:acme/repo.git").unwrap(); -- cgit v1.3.1