aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb
blob: 149b987d81f9f71ad6d76a2526c3b6944c21c6b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'test_helper'

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

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