aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin/templates/test/%name%_test.rb
blob: 0a8bbd4aaf441e8123f29fc54a2cd997b3453769 (plain) (blame)
1
2
3
4
5
6
7
require 'test_helper'

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