Guest User

Untitled

a guest
Jul 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. describe 'front controller' do
  2.  
  3. before do
  4. get '/'
  5. end
  6.  
  7. it 'should have html as content type' do
  8. content_type_is 'text/html'
  9. end
  10.  
  11. it 'contains from text' do
  12. body_contains 'from'
  13. end
  14.  
  15. end
Add Comment
Please, Sign In to add comment