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

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

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