Is there a way to run a testfile from inside an irb or pry session?
I tried load './testfile.rb, but that doesn't run the tests in the testfile.
My Testfile looks like this:
require 'test/unit'
require './sudoku.rb'
class SudokuTest < Test::Unit::TestCase
def test_initialize
assert_nothing_raised do
Sudoku.new(Array.new(9*9))
end
assert_nothing_raised do
Sudoku.new(Array.new(9*9,Field.new(nil)))
end
end
end