aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb
blob: dd4d2da4eb35a2e17a1136ae1f9e0ad54b60a70e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'test_helper'

class NavigationTest < ActionDispatch::IntegrationTest
<% unless options[:skip_active_record] -%>
  fixtures :all
<% end -%>

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