aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb
blob: 9028b84b7dcde9c5678af611220111c19b831287 (plain) (blame)
1
2
3
4
5
6
7
8
require 'test/unit'

class <%= class_name %>Test < Test::Unit::TestCase
  # Replace this with your real tests.
  def test_this_plugin
    flunk
  end
end