Sha256: 82cbf3bd69fcece111c98bdb4bd5e7e04d7395f56ba2e23f71ffe6564574e9ba
Contents?: true
Size: 1.97 KB
Versions: 4
Compression:
Stored size: 1.97 KB
Contents
require 'stringio' require 'rbconfig' context "DrbCommandLine without running local server" do unless Config::CONFIG['ruby_install_name'] == 'jruby' specify "should print error when there is no running local server" do err = StringIO.new out = StringIO.new Spec::Runner::DrbCommandLine.run(['--version'], err, out, false) err.rewind err.read.should =~ /No server is running/ end end end context "DrbCommandLine with local server" do unless Config::CONFIG['ruby_install_name'] == 'jruby' context_setup do create_dummy_spec_file DRb.start_service("druby://localhost:8989", Spec::Runner::CommandLine) end context_teardown do DRb.stop_service File.delete(@dummy_spec_filename) end specify "should run against local server" do out = run_spec_via_druby(['--version']) out.should =~ /RSpec/n end specify "should output green colorized text when running with --colour option" do out = run_spec_via_druby(["--colour", @dummy_spec_filename]) out.should =~ /\e\[32m/n end specify "should output red colorized text when running with -c option" do out = run_spec_via_druby(["-c", @dummy_spec_filename]) out.should =~ /\e\[31m/n end def create_dummy_spec_file @dummy_spec_filename = File.expand_path(File.dirname(__FILE__)) + '/_dummy_spec.rb' File.open(@dummy_spec_filename, 'w') do |f| f.write %{ context "DUMMY CONTEXT for 'DrbCommandLine with -c option'" do specify "should be output with green bar" do true.should be(true) end specify "should be output with red bar" do violated("I wan to see a red bar!") end end } end end def run_spec_via_druby(args) err, out = StringIO.new, StringIO.new out.instance_eval do def tty?; true end end Spec::Runner::DrbCommandLine.run(args, err, out, false, true) out.rewind; out.read end end end
Version data entries
4 entries across 4 versions & 2 rubygems