This describe is the default that RSpec creates. I am having difficulty working with TDD. I find it complicated and am having trouble understanding the entire procedure.
For example, I need to test that by accessing the index method, it returns a list of users. What would be the way to test this functionality?
describe "GET 'index'" do it "returns http success" do get 'index' expect(response).to be_success end end