We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d16e6 commit 6d43761Copy full SHA for 6d43761
tests/suite/cli_misc.rs
@@ -794,6 +794,18 @@ fn install_unavailable_platform() {
794
});
795
}
796
797
+// issue #1329
798
+#[test]
799
+fn install_beta_with_tag() {
800
+ clitools::test(Scenario::BetaTag, &|config| {
801
+ config.expect_ok(&["rustup", "default", "1.78.0-beta"]);
802
+ config.expect_stdout_ok(&["rustc", "--version"], "1.78.0-beta");
803
+
804
+ config.expect_ok(&["rustup", "default", "1.79.0-beta.2"]);
805
+ config.expect_stdout_ok(&["rustc", "--version"], "1.79.0-beta.2");
806
+ })
807
+}
808
809
#[test]
810
fn update_nightly_even_with_incompat() {
811
clitools::test(Scenario::MissingComponent, &|config| {
0 commit comments