aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/observer/templates/unit_test.rb
blob: cd116f5ce951e7be23a06d15238e41fcb79af51c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'test_helper'

<% module_namespacing do -%>
class <%= class_name %>ObserverTest < ActiveSupport::TestCase
  # Replace this with your real tests.
  test "the truth" do
    assert true
  end
end
<% end -%>