Merge pull request #4412 from claui/remove-rspec-focus

Re-enable tests by removing a stray rspec `:focus`
This commit is contained in:
Mike McQuaid 2018-07-02 18:45:43 +01:00 committed by GitHub
commit ee1c206134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ describe Hbc::SystemCommand, :cask do
options.merge!(print_stdout: true)
end
it "echoes both STDOUT and STDERR", :focus do
it "echoes both STDOUT and STDERR" do
expect { described_class.run(command, options) }
.to output("1\n3\n5\n").to_stdout
.and output("2\n4\n6\n").to_stderr