Pending Tests
Learn how to make the unit test pass using the pending test.
We'll cover the following...
If it bothers us to see the integration test continue to fail while we write the unit tests that will make it pass, RSpec allows us to specify a test as pending or to skip it altogether. In RSpec, any it
method defined without a block is considered to be “pending.”
it "bends steel in its bare hands"
...