aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb
blob: 8491d2e3aec77ec6c03b7a70b09084d2ba99e2a8 (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_truth
    assert true
  end
end