aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb
blob: f37369420f18265d4422b0c1f994a5a183a52e32 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'test_helper'

class <%= camelized_modules %>::Test < ActiveSupport::TestCase
  test "truth" do
    assert_kind_of Module, <%= camelized_modules %>
  end
end