aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/dev-cmd/ruby_spec.rb
diff options
context:
space:
mode:
authorSteven Peters2018-02-28 09:31:29 -0800
committerSteven Peters2018-02-28 09:31:29 -0800
commitdb615a419afb99f186fb6df7c859f7538a7524ba (patch)
tree7337150b89eb9e61516e39146eaf02508371d4cb /Library/Homebrew/test/dev-cmd/ruby_spec.rb
parent4176399537f6cff28e6e94b5473870f3d89d1024 (diff)
downloadbrew-db615a419afb99f186fb6df7c859f7538a7524ba.tar.bz2
dev-cmd/ruby: fix path to dev-cmd/irb and add test
Diffstat (limited to 'Library/Homebrew/test/dev-cmd/ruby_spec.rb')
-rw-r--r--Library/Homebrew/test/dev-cmd/ruby_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Homebrew/test/dev-cmd/ruby_spec.rb b/Library/Homebrew/test/dev-cmd/ruby_spec.rb
new file mode 100644
index 000000000..e05bccc83
--- /dev/null
+++ b/Library/Homebrew/test/dev-cmd/ruby_spec.rb
@@ -0,0 +1,13 @@
+describe "brew ruby", :integration_test do
+ it "executes ruby code with Homebrew's libraries loaded" do
+ expect { brew "ruby", "-e", "exit 0" }
+ .to be_a_success
+ .and not_to_output.to_stdout
+ .and not_to_output.to_stderr
+
+ expect { brew "ruby", "-e", "exit 1" }
+ .to be_a_failure
+ .and not_to_output.to_stdout
+ .and not_to_output.to_stderr
+ end
+end