A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
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.
60 lines
1.2 KiB
60 lines
1.2 KiB
require 'test_helper' |
|
|
|
class UsersControllerTest < ActionController::TestCase |
|
setup do |
|
@user = users(:one) |
|
end |
|
|
|
test "should get index" do |
|
get :index |
|
assert_response :success |
|
assert_not_nil assigns(:users) |
|
end |
|
|
|
test "should get new" do |
|
get :new |
|
assert_response :success |
|
end |
|
|
|
test "should create user" do |
|
assert_difference('User.count') do |
|
post :create, user: { |
|
email: 'original@example.com', |
|
firstname: @user.firstname, |
|
lastname: @user.lastname, |
|
login: @user.login, |
|
password: 'abcdefghijklmnopqrstuvwxyz' |
|
} |
|
end |
|
|
|
assert_redirected_to user_path(assigns(:user)) |
|
end |
|
|
|
test "should show user" do |
|
get :show, id: @user |
|
assert_response :success |
|
end |
|
|
|
test "should get edit" do |
|
get :edit, id: @user |
|
assert_response :success |
|
end |
|
|
|
test "should update user" do |
|
patch :update, id: @user, user: { |
|
email: @user.email, |
|
firstname: @user.firstname, |
|
lastname: @user.lastname, |
|
login: @user.login |
|
} |
|
assert_redirected_to user_path(assigns(:user)) |
|
end |
|
|
|
test "should destroy user" do |
|
assert_difference('User.count', -1) do |
|
delete :destroy, id: @user |
|
end |
|
|
|
assert_redirected_to users_path |
|
end |
|
end
|
|
|