mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-04 04:04:36 +08:00
changes double quotes with single quotes
This commit is contained in:
parent
b2e969459c
commit
b7bed5b5fe
1 changed files with 39 additions and 39 deletions
|
@ -7,50 +7,50 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
@user = User.first
|
||||
end
|
||||
|
||||
describe "GET current_user_info" do
|
||||
it "responds successfully" do
|
||||
describe 'GET current_user_info' do
|
||||
it 'responds successfully' do
|
||||
get :current_user_info, format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
end
|
||||
|
||||
describe "POST change_password" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_password' do
|
||||
it 'responds successfully' do
|
||||
post :change_password,
|
||||
params: { user: { password: "secretPassword"} },
|
||||
params: { user: { password: 'secretPassword'} },
|
||||
format: :json
|
||||
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes password" do
|
||||
it 'changes password' do
|
||||
expect(@user.valid_password?('secretPassword')).to eq(false)
|
||||
post :change_password,
|
||||
params: { user: { password: "secretPassword"} },
|
||||
params: { user: { password: 'secretPassword'} },
|
||||
format: :json
|
||||
|
||||
expect(@user.reload.valid_password?('secretPassword')).to eq(true)
|
||||
end
|
||||
|
||||
it "does not change short password" do
|
||||
it 'does not change short password' do
|
||||
expect(@user.valid_password?('pass')).to eq(false)
|
||||
post :change_password,
|
||||
params: { user: { password: "pass"} },
|
||||
params: { user: { password: 'pass'} },
|
||||
format: :json
|
||||
|
||||
expect(@user.reload.valid_password?('pass')).to eq(false)
|
||||
end
|
||||
end
|
||||
|
||||
describe "POST change_timezone" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_timezone' do
|
||||
it 'responds successfully' do
|
||||
user = User.first
|
||||
expect(user.time_zone).to eq('UTC')
|
||||
post :change_timezone, params: { timezone: 'Pacific/Fiji'}, format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes timezone" do
|
||||
it 'changes timezone' do
|
||||
user = User.first
|
||||
expect(user.time_zone).to eq('UTC')
|
||||
post :change_timezone, params: { timezone: 'Pacific/Fiji'}, format: :json
|
||||
|
@ -58,29 +58,29 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
end
|
||||
end
|
||||
|
||||
describe "POST change_initials" do
|
||||
it "responds successfully" do
|
||||
post :change_initials, params: { initials: "TD"}, format: :json
|
||||
describe 'POST change_initials' do
|
||||
it 'responds successfully' do
|
||||
post :change_initials, params: { initials: 'TD'}, format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "responds successfully" do
|
||||
it 'responds successfully' do
|
||||
user = User.first
|
||||
expect(user.initials).not_to eq("TD")
|
||||
post :change_initials, params: { initials: "TD"}, format: :json
|
||||
expect(user.reload.initials).to eq("TD")
|
||||
expect(user.initials).not_to eq('TD')
|
||||
post :change_initials, params: { initials: 'TD'}, format: :json
|
||||
expect(user.reload.initials).to eq('TD')
|
||||
end
|
||||
end
|
||||
|
||||
describe "POST change_system_notification_email" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_system_notification_email' do
|
||||
it 'responds successfully' do
|
||||
post :change_system_notification_email,
|
||||
params: { status: false },
|
||||
format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes notification from false => true" do
|
||||
it 'changes notification from false => true' do
|
||||
user = User.first
|
||||
user.system_message_notification_email = false
|
||||
user.save
|
||||
|
@ -91,7 +91,7 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
expect(user.reload.system_message_notification_email).to eq(true)
|
||||
end
|
||||
|
||||
it "changes notification from true => false" do
|
||||
it 'changes notification from true => false' do
|
||||
user = User.first
|
||||
user.system_message_notification_email = true
|
||||
user.save
|
||||
|
@ -103,15 +103,15 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
end
|
||||
end
|
||||
|
||||
describe "POST change_recent_notification_email" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_recent_notification_email' do
|
||||
it 'responds successfully' do
|
||||
post :change_recent_notification_email,
|
||||
params: { status: false },
|
||||
format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes notification from false => true" do
|
||||
it 'changes notification from false => true' do
|
||||
user = User.first
|
||||
user.recent_notification_email = false
|
||||
user.save
|
||||
|
@ -122,7 +122,7 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
expect(user.reload.recent_notification_email).to eq(true)
|
||||
end
|
||||
|
||||
it "changes notification from true => false" do
|
||||
it 'changes notification from true => false' do
|
||||
user = User.first
|
||||
user.recent_notification_email = true
|
||||
user.save
|
||||
|
@ -134,13 +134,13 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
end
|
||||
end
|
||||
|
||||
describe "POST change_recent_notification" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_recent_notification' do
|
||||
it 'responds successfully' do
|
||||
post :change_recent_notification, params: { status: false }, format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes notification from false => true" do
|
||||
it 'changes notification from false => true' do
|
||||
user = User.first
|
||||
user.recent_notification = false
|
||||
user.save
|
||||
|
@ -149,7 +149,7 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
expect(user.reload.recent_notification).to eq(true)
|
||||
end
|
||||
|
||||
it "changes notification from true => false" do
|
||||
it 'changes notification from true => false' do
|
||||
user = User.first
|
||||
user.recent_notification = true
|
||||
user.save
|
||||
|
@ -159,15 +159,15 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
end
|
||||
end
|
||||
|
||||
describe "POST change_assignements_notification_email" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_assignements_notification_email' do
|
||||
it 'responds successfully' do
|
||||
post :change_assignements_notification_email,
|
||||
params: { status: false },
|
||||
format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes notification from false => true" do
|
||||
it 'changes notification from false => true' do
|
||||
user = User.first
|
||||
user.assignments_notification_email = false
|
||||
user.save
|
||||
|
@ -178,7 +178,7 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
expect(user.reload.assignments_notification_email).to eq(true)
|
||||
end
|
||||
|
||||
it "changes notification from true => false" do
|
||||
it 'changes notification from true => false' do
|
||||
user = User.first
|
||||
user.assignments_notification_email = true
|
||||
user.save
|
||||
|
@ -190,15 +190,15 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
end
|
||||
end
|
||||
|
||||
describe "POST change_assignements_notification" do
|
||||
it "responds successfully" do
|
||||
describe 'POST change_assignements_notification' do
|
||||
it 'responds successfully' do
|
||||
post :change_assignements_notification,
|
||||
params: { status: false },
|
||||
format: :json
|
||||
expect(response).to have_http_status(:ok)
|
||||
end
|
||||
|
||||
it "changes notification from false => true" do
|
||||
it 'changes notification from false => true' do
|
||||
user = User.first
|
||||
user.assignments_notification = false
|
||||
user.save
|
||||
|
@ -209,7 +209,7 @@ describe ClientApi::Users::UsersController, type: :controller do
|
|||
expect(user.reload.assignments_notification).to eq(true)
|
||||
end
|
||||
|
||||
it "changes notification from true => false" do
|
||||
it 'changes notification from true => false' do
|
||||
user = User.first
|
||||
user.assignments_notification = true
|
||||
user.save
|
||||
|
|
Loading…
Add table
Reference in a new issue