diff options
| author | Joshua Liu | 2017-02-23 05:02:41 -0500 | 
|---|---|---|
| committer | Joshua Liu | 2017-02-23 05:02:41 -0500 | 
| commit | 1d7fde515b9cce2e3fc4dddce1c34f5e410bca87 (patch) | |
| tree | 132b8f5576f263f67b4e8a356d68ffb78e0cb585 | |
| parent | 4063f4159dfa36132db4045e8ec4f7f722cdf9bb (diff) | |
| download | brew-1d7fde515b9cce2e3fc4dddce1c34f5e410bca87.tar.bz2 | |
Update deps_spec descriptions
| -rw-r--r-- | Library/Homebrew/test/deps_spec.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Homebrew/test/deps_spec.rb b/Library/Homebrew/test/deps_spec.rb index 61a0d1174..ec7964b76 100644 --- a/Library/Homebrew/test/deps_spec.rb +++ b/Library/Homebrew/test/deps_spec.rb @@ -8,19 +8,19 @@ describe "brew deps", :integration_test do      EOS    end -  it "outputs nothing for formula foo" do +  it "outputs no dependencies for a Formula that has no dependencies" do      expect { brew "deps", "foo" }.to output("").to_stdout        .and not_to_output.to_stderr        .and be_a_success    end -  it "outputs foo for formula bar" do +  it "outputs a dependency for a Formula that has one dependency" do      expect { brew "deps", "bar" }.to output("foo\n").to_stdout        .and not_to_output.to_stderr        .and be_a_success    end -  it "outputs formulae bar and foo for formula baz" do +  it "outputs dependencies on separate lines for a Formula that has multiple dependencies" do      expect { brew "deps", "baz" }.to output("bar\nfoo\n").to_stdout        .and not_to_output.to_stderr        .and be_a_success | 
