Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Rake::TestTask.new(:test) do |t|
test_files = FileList["test/**/*_test.rb"]

# This is a big test file from the parser gem that tests its functionality.
test_files << "test/suites/parser/test/test_parser.rb"
parser_test_file = "test/suites/parser/test/test_parser.rb"
test_files << parser_test_file if File.exist?(parser_test_file)

t.test_files = test_files
end
Expand Down