class WpcliCompletion < Formula desc "Bash completion for Wpcli" homepage "https://github.com/wp-cli/wp-cli" url "https://github.com/wp-cli/wp-cli/archive/v1.5.0.tar.gz" sha256 "2142eae74ff927ab6e84e456d2bd8edf6e3774944b1f36e422a335f10865e68c" head "https://github.com/wp-cli/wp-cli.git" bottle :unneeded def install bash_completion.install "utils/wp-completion.bash" => "wp" end test do assert_match "-F _wp_complete", shell_output("source #{bash_completion}/wp && complete -p wp") end end