aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb
blob: 61688aee4e6fcb400417e931cc300fe607578647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require "#{File.dirname(__FILE__)}<%= '/..' * class_nesting_depth %>/../test_helper"

class <%= class_name %>Test < ActionController::IntegrationTest
  # fixtures :your, :models

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