17 lines
331 B
Ruby
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
|