mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-06 04:46:42 +02:00
61 lines
1.5 KiB
Diff
61 lines
1.5 KiB
Diff
diff --git a/src/tools/cargo/tests/testsuite/new.rs b/src/tools/cargo/tests/testsuite/new.rs.new
|
|
index 52e327e36c..416ff58671 100644
|
|
--- a/src/tools/cargo/tests/testsuite/new.rs
|
|
+++ b/src/tools/cargo/tests/testsuite/new.rs.new
|
|
@@ -154,6 +154,7 @@ fn keyword_name() {
|
|
).run();
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_author_user() {
|
|
create_empty_gitconfig();
|
|
@@ -168,6 +169,7 @@ fn finds_author_user() {
|
|
assert!(contents.contains(r#"authors = ["foo"]"#));
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_author_user_escaped() {
|
|
create_empty_gitconfig();
|
|
@@ -182,6 +184,7 @@ fn finds_author_user_escaped() {
|
|
assert!(contents.contains(r#"authors = ["foo \"bar\""]"#));
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_author_username() {
|
|
create_empty_gitconfig();
|
|
@@ -217,6 +220,7 @@ fn finds_author_priority() {
|
|
assert!(contents.contains(r#"authors = ["bar <baz>"]"#));
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_author_email() {
|
|
create_empty_gitconfig();
|
|
@@ -234,6 +238,7 @@ fn finds_author_email() {
|
|
assert!(contents.contains(r#"authors = ["bar <baz>"]"#));
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_author_git() {
|
|
git_process("config --global user.name bar").exec().unwrap();
|
|
@@ -289,6 +294,7 @@ fn finds_git_email() {
|
|
assert!(contents.contains(r#"authors = ["foo <gitfoo>"]"#), contents);
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn finds_git_author() {
|
|
create_empty_gitconfig();
|
|
@@ -337,6 +343,7 @@ fn author_prefers_cargo() {
|
|
assert!(!root.join("foo/.gitignore").exists());
|
|
}
|
|
|
|
+#[ignore]
|
|
#[test]
|
|
fn strip_angle_bracket_author_email() {
|
|
create_empty_gitconfig();
|