blob: dfba3bfee63545c677442bcc5af86e161820ff86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//! ref: composer/tests/Composer/Test/Downloader/ArchiveDownloaderTest.php
// These exercise getFileName/processUrl on an anonymous ArchiveDownloader subclass built
// with a mocked IO and a real HttpDownloader (curl_multi_init is todo!()), and pass mocked
// packages.
#[test]
#[ignore = "FileDownloader::get_file_name is pub(crate); not reachable from the integration test crate"]
fn test_get_file_name() {
todo!()
}
#[test]
#[ignore = "FileDownloader::process_url is pub(crate); not reachable from the integration test crate"]
fn test_process_url() {
todo!()
}
#[test]
#[ignore = "FileDownloader::process_url is pub(crate); not reachable from the integration test crate"]
fn test_process_url2() {
todo!()
}
#[test]
#[ignore = "FileDownloader::process_url is pub(crate); not reachable from the integration test crate"]
fn test_process_url3() {
todo!()
}
#[test]
#[ignore = "FileDownloader::process_url is pub(crate); not reachable from the integration test crate"]
fn test_process_url_rewrite_dist() {
todo!()
}
#[test]
#[ignore = "FileDownloader::process_url is pub(crate); not reachable from the integration test crate"]
fn test_process_url_rewrite_bitbucket_dist() {
todo!()
}
|