please post the test code you’re trying to run. also, unless it’s a lot of text, add the html for the page you’re testing.
the test is looking at the html being returned by the rails controller to see if it has the text “Sample App” in it and it’s failing because it’s not finding that text. the code for the test is around: /spec/requests/static_pages_
spec.rb:7
The initial exercise shows text for a failing test - that text isn’t exactly what you’ve posted in your results but the meaning is the same - it can’t find “Sample App” in the response. have you written the code to make the test pass yet? you may be trying to be too literal in the tutorial and sometimes different versions of testing frameworks or versions of rails/ruby etc can affect some of those details. not sure if that’s what’s happening here but i don’t see a huge disconnect from what you’ve reported and what the tutorial is expressing.
Boot up the server and look at the page in your browser. See if the phrase “Sample App” is on it (case sensitive), or if there’s a nice big red error message.
please post the test code you're trying to run. also, unless it's a lot
of
hth,
Max
Sorry! For the confusions.
I expect it to fail. What made me confused is - *expected
#has_content?("Sample App") to return true, got false*. Because the
tutorial is not showing this in the fail results. why does it come for
my case. That was my question. See the error as attached which was
mentioned in tutorial.