Method: Rake::TestTask#test_files=
- Defined in:
- lib/rake/testtask.rb
#test_files=(list) ⇒ Object
Explicitly define the list of test files to be included in a test. list is expected to be an array of file names (a FileList is acceptable). If both pattern and test_files are used, then the list of test files is the union of the two.
81 82 83 |
# File 'lib/rake/testtask.rb', line 81 def test_files=(list) @test_files = list end |