I have an app that sends an SMS with a verification code to users during signup.
I send it by doing the following:
Authy::API.request_sms(:id => user.authy_id)
I was wondering if it is possible to see the exact content of this SMS (along with the verification code) during my testing, so that I could just directly put the code into the input field when I run my capybara signup test.