bouquins-ror/test/controllers/static_pages_controller_test.rb
2015-06-28 11:48:20 +02:00

17 lines
331 B
Ruby

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