bouquins-ror/test/controllers/static_pages_controller_test.rb

17 lines
331 B
Ruby
Raw Normal View History

2015-06-28 09:48:20 +00:00
require 'test_helper'
class StaticPagesControllerTest < ActionController::TestCase
test "should get home" do
get :home
assert_response :success
assert_select "title", "Home | Bouquins"
end
test "should get about" do
get :about
assert_response :success
assert_select "title", "About | Bouquins"
end
end