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

class <%= class_name %>Test < ActionDispatch::IntegrationTest
  fixtures :all

  # Replace this with your real tests.
  test "the truth" do
    assert true
  end
end