From f955f8d384bccb27a6aa664ab77bb05645c970a9 Mon Sep 17 00:00:00 2001 From: Markus Reiter <me@reitermark.us> Date: Thu, 23 Feb 2017 06:06:48 +0100 Subject: [PATCH] Convert `brew info` test to spec. --- Library/Homebrew/test/cmd/info_spec.rb | 10 ++++++++++ Library/Homebrew/test/info_test.rb | 9 --------- 2 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 Library/Homebrew/test/cmd/info_spec.rb diff --git a/Library/Homebrew/test/cmd/info_spec.rb b/Library/Homebrew/test/cmd/info_spec.rb new file mode 100644 index 0000000000..d330359725 --- /dev/null +++ b/Library/Homebrew/test/cmd/info_spec.rb @@ -0,0 +1,10 @@ +describe "brew info", :integration_test do + it "prints information about a given Formula" do + setup_test_formula "testball" + + expect { brew "info", "testball" } + .to output(/testball: stable 0.1/).to_stdout + .and not_to_output.to_stderr + .and be_a_success + end +end diff --git a/Library/Homebrew/test/info_test.rb b/Library/Homebrew/test/info_test.rb index f71044bf02..d8a0f79047 100644 --- a/Library/Homebrew/test/info_test.rb +++ b/Library/Homebrew/test/info_test.rb @@ -3,15 +3,6 @@ require "cmd/info" require "formula" require "testing_env" -class IntegrationCommandTestInfo < IntegrationCommandTestCase - def test_info - setup_test_formula "testball" - - assert_match "testball: stable 0.1", - cmd("info", "testball") - end -end - class InfoCommandTests < Homebrew::TestCase def test_github_remote_path remote = "https://github.com/Homebrew/homebrew-core" -- GitLab