class BugTest

Replace this with the code necessary to make your test fail.

def app

def app
  Rails.application
end

def test_admin_root_success?

def test_admin_root_success?
  get admin_root_url
  assert_response :success
  assert_match 'Test Me', response.body # has content
  assert_match 'Users', response.body # has 'Your Models' in menu
end

def test_admin_users

def test_admin_users
  User.create! full_name: 'John Doe'
  get admin_users_url
  assert_response :success
  assert_match 'John Doe', response.body # has created row
end