aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb
blob: ddecb5587236d91394298b486fba19135a8c41b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../test_helper'

class <%= controller_class_name %>ControllerTest < ActionController::TestCase
  tests <%= controller_class_name %>Controller

  # Replace this with your real tests.
  def test_truth
    assert true
  end
end