Method: Ore::Project#add_test_file

Defined in:
lib/ore/project.rb

#add_test_file(path) ⇒ Object (protected)

Adds a testing-file to the project.

Parameters:

  • path (String)

    The path to the testing-file, relative to the project.



495
496
497
# File 'lib/ore/project.rb', line 495

def add_test_file(path)
  check_file(path) { |file| @test_files << file }
end