You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
355 B
18 lines
355 B
require "test_helper"
|
|
|
|
class LivresControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get livres_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get new" do
|
|
get livres_new_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get livres_create_url
|
|
assert_response :success
|
|
end
|
|
end
|