File: integration_test.rb

package info (click to toggle)
ruby-liquid-c 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: ansic: 3,866; ruby: 1,151; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

at_exit { GC.start }

require_relative "liquid_test_helper"

test_files = Dir[File.join(LIQUID_TEST_DIR, "integration/**/*_test.rb")]
test_files << File.join(LIQUID_TEST_DIR, "unit/tokenizer_unit_test.rb")
test_files.each do |test_file|
  require test_file
end