diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-22 02:33:21 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-22 02:34:14 +0900 |
| commit | 9506cfafe29417a5c4149cf618f7e8c79d463e4e (patch) | |
| tree | 357f8ef9b0436c6aee9c1b883c1f8223f83520ea /crates/shirabe/tests/util/filesystem_test.rs | |
| parent | 822d9a872807a92a5337ee8b7bab96dc9845cdbb (diff) | |
| download | php-shirabe-9506cfafe29417a5c4149cf618f7e8c79d463e4e.tar.gz php-shirabe-9506cfafe29417a5c4149cf618f7e8c79d463e4e.tar.zst php-shirabe-9506cfafe29417a5c4149cf618f7e8c79d463e4e.zip | |
test: un-ignore tests that now pass
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/tests/util/filesystem_test.rs')
| -rw-r--r-- | crates/shirabe/tests/util/filesystem_test.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/crates/shirabe/tests/util/filesystem_test.rs b/crates/shirabe/tests/util/filesystem_test.rs index 9e41b1f..f5896b0 100644 --- a/crates/shirabe/tests/util/filesystem_test.rs +++ b/crates/shirabe/tests/util/filesystem_test.rs @@ -350,7 +350,6 @@ fn provide_path_couples_as_code() ] } -#[ignore] #[test] fn test_find_shortest_path_code() { let fs = Filesystem::new(None); @@ -461,7 +460,6 @@ fn provide_path_couples() -> Vec<(&'static str, &'static str, &'static str, bool ] } -#[ignore] #[test] fn test_find_shortest_path() { let fs = Filesystem::new(None); @@ -473,7 +471,6 @@ fn test_find_shortest_path() { } } -#[ignore] #[test] fn test_remove_directory_php() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -492,7 +489,6 @@ fn test_remove_directory_php() { ))); } -#[ignore] #[test] fn test_file_size() { let unique_tmp = tempfile::TempDir::new().unwrap(); @@ -504,7 +500,6 @@ fn test_file_size() { assert!(fs.size(&test_file).unwrap() >= 5); } -#[ignore] #[test] fn test_directory_size() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -544,7 +539,6 @@ fn provide_normalized_paths() -> Vec<(&'static str, &'static str)> { ] } -#[ignore] #[test] fn test_normalize_path() { let fs = Filesystem::new(None); @@ -553,7 +547,6 @@ fn test_normalize_path() { } } -#[ignore] #[test] fn test_unlink_symlinked_directory() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -579,7 +572,6 @@ fn test_unlink_symlinked_directory() { assert!(!file_exists(&symlinked)); } -#[ignore] #[test] fn test_remove_symlinked_directory_with_trailing_slash() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -613,7 +605,6 @@ fn test_remove_symlinked_directory_with_trailing_slash() { assert!(!file_exists(&symlinked)); } -#[ignore] #[test] fn test_junctions() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -667,7 +658,6 @@ fn test_junctions() { assert!(!is_dir(&junction), "{junction} is not a directory"); } -#[ignore] #[test] fn test_override_junctions() { if !Platform::is_windows() { @@ -713,7 +703,6 @@ fn test_override_junctions() { ); } -#[ignore] #[test] fn test_copy() { let working_dir = tempfile::TempDir::new().unwrap(); @@ -769,7 +758,6 @@ fn test_copy() { assert!(file_exists(format!("{working_dir}/testfile.file"))); } -#[ignore] #[test] fn test_copy_then_remove() { let working_dir = tempfile::TempDir::new().unwrap(); |
