about summary refs log tree commit diff stats
path: root/test/controllers/quotes_controller_test.rb
blob: a085d404ae0402402704faed519d9ecb3990d032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "test_helper"

class QuotesControllerTest < ActionDispatch::IntegrationTest
  test "should get index" do
    get quotes_index_url
    assert_response :success
  end

  test "should get show" do
    get quotes_show_url
    assert_response :success
  end

  test "should get new" do
    get quotes_new_url
    assert_response :success
  end
end