class FailSpell::SpecRunner

Attributes

spec_path[R]

Public Class Methods

new(spec_path) click to toggle source
# File lib/failspell/spec_runner.rb, line 5
def initialize(spec_path)
  @spec_path = spec_path
end

Public Instance Methods

run() click to toggle source
# File lib/failspell/spec_runner.rb, line 9
def run
  system "rspec #{spec_path}"
end