class TestLauncher::Frameworks::RSpec::TestCase

Public Instance Methods

runner() click to toggle source
# File lib/test_launcher/frameworks/rspec.rb, line 80
def runner
  @runner ||= begin
    if File.exist?(File.join(app_root, "bin/rspec"))
      "bin/rspec"
    else
      "bundle exec rspec"
    end
  end
end
test_root_dir_name() click to toggle source
# File lib/test_launcher/frameworks/rspec.rb, line 76
def test_root_dir_name
  "spec"
end