Guest User

Untitled

a guest
Jun 24th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ## test_helper.rb
  2. require 'rubygems'
  3. require 'sinatra'
  4. require 'test/unit'
  5. require 'shoulda'
  6. require 'matchy'
  7.  
  8. File.expand_path File.dirname __FILE__ + '/../application'
  9.  
  10. ## test_application.rb
  11. require 'test_helper'
  12.  
  13. class TestIndex < Test::Unit::TestCase
  14. context 'The index page' do
  15. setup do
  16. get '/'
  17. @article = Article.first
  18. end
  19.  
  20. should 'show the most recent article' do
  21. assert_equal 'Jack Knife you sonofa bitch!', @article.title
  22. end
  23. end
  24. end
Add Comment
Please, Sign In to add comment