From 95e8c48dd3348503a8c7db5d0498894a1b676395 Mon Sep 17 00:00:00 2001 From: eregon Date: Sun, 7 May 2017 12:04:49 +0000 Subject: Add in-tree mspec and ruby/spec * For easier modifications of ruby/spec by MRI developers. * .gitignore: track changes under spec. * spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec. These files can therefore be updated like any other file in MRI. Instructions are provided in spec/README. [Feature #13156] [ruby-core:79246] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/rubyspec/spec_helper.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 spec/rubyspec/spec_helper.rb (limited to 'spec/rubyspec/spec_helper.rb') diff --git a/spec/rubyspec/spec_helper.rb b/spec/rubyspec/spec_helper.rb new file mode 100644 index 0000000000..c275e320ec --- /dev/null +++ b/spec/rubyspec/spec_helper.rb @@ -0,0 +1,18 @@ +use_realpath = File.respond_to?(:realpath) +root = File.dirname(__FILE__) +dir = "fixtures/code" +CODE_LOADING_DIR = use_realpath ? File.realpath(dir, root) : File.expand_path(dir, root) + +# Running directly with ruby some_spec.rb +unless ENV['MSPEC_RUNNER'] + begin + require 'mspec' + require 'mspec/commands/mspec-run' + rescue LoadError + puts "Please add -Ipath/to/mspec/lib or install the MSpec gem to run the specs." + exit 1 + end + + ARGV.unshift $0 + MSpecRun.main +end -- cgit v1.2.3