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

class Admin::BlogsControllerTest < ActionDispatch::IntegrationTest
  test "should get index" do
    get admin_blogs_index_url
    assert_response :success
  end

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

  test "should get edit" do
    get admin_blogs_edit_url
    assert_response :success
  end

end