File: tests.rb

package info (click to toggle)
ruby-i18n 1.14.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 764 kB
  • sloc: ruby: 6,560; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module I18n
  module Tests
    autoload :Basics,        'i18n/tests/basics'
    autoload :Defaults,      'i18n/tests/defaults'
    autoload :Interpolation, 'i18n/tests/interpolation'
    autoload :Link,          'i18n/tests/link'
    autoload :Localization,  'i18n/tests/localization'
    autoload :Lookup,        'i18n/tests/lookup'
    autoload :Pluralization, 'i18n/tests/pluralization'
    autoload :Procs,         'i18n/tests/procs'
  end
end