tweak a test for multi-platform run

This commit is contained in:
John Bintz 2011-06-07 15:04:11 -04:00
parent c5956ee7d3
commit 1d4d5f397a
2 changed files with 32 additions and 2 deletions

View File

@ -1,2 +1,32 @@
require 'bundler' require 'bundler'
Bundler::GemHelper.install_tasks Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
namespace :spec do
desc "Run on three Rubies"
task :platforms do
current = %x{rvm-prompt v}
fail = false
%w{1.8.7 1.9.2 ree}.each do |version|
puts "Switching to #{version}"
Bundler.with_clean_env do
system %{bash -c 'source ~/.rvm/scripts/rvm ; rvm #{version} ; bundle install ; bundle exec rake spec'}
end
if $?.exitstatus != 0
fail = true
break
end
end
system %{rvm #{current}}
exit (fail ? 1 : 0)
end
end
task :default => 'spec:platforms'

View File

@ -45,8 +45,8 @@ describe Jasmine::CLI do
let(:test_data) { %w{third fourth} } let(:test_data) { %w{third fourth} }
before do before do
File.open(GLOBAL_DEFAULTS_FILE, 'w') { |fh| fh.puts global_test_data.join(' ') } File.open(Jasmine::CLI::GLOBAL_DEFAULTS_FILE, 'w') { |fh| fh.puts global_test_data.join(' ') }
File.open(DEFAULTS_FILE, 'w') { |fh| fh.puts test_data.join(' ') } File.open(Jasmine::CLI::DEFAULTS_FILE, 'w') { |fh| fh.puts test_data.join(' ') }
end end
it "should read the options" do it "should read the options" do