class Starship < Formula desc "The cross-shell prompt for astronauts" homepage "https://starship.rs" url "https://github.com/starship/starship/archive/v0.21.0.tar.gz" sha256 "01c6141d1fb922ddbe595a2141c267059a1b46acf1a22fdb77caa96c53930f40" head "https://github.com/starship/starship.git" bottle do cellar :any_skip_relocation sha256 "1fbc88c44889ecb2beaa0298b2e1b12c0103d8cdb3517e4c7aaa3d67acc997a7" => :catalina sha256 "c90a8ffd25a82d80a5e55d50d1a579d5efda83e4a2cd30fc2ee35808ded7a03c" => :mojave sha256 "39170ca815e8895a6a0a2eb754485fe918271dc5263fdd4425aa2ddc69c3c8b0" => :high_sierra end depends_on "rust" => :build def install system "cargo", "install", "--root", prefix, "--path", "." end test do ENV["STARSHIP_CONFIG"] = "" assert_equal "❯ ", shell_output("#{bin}/starship module character") end end