summaryrefslogtreecommitdiffstats
path: root/test/unit/user_import_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-11-13 12:40:57 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-11-13 12:40:57 +0000
commit63e7b990fe00de1f641f27f81c04b68fff0b62b2 (patch)
treedf9f44e62d78fd09b815c912e8031a5a158cc4bc /test/unit/user_import_test.rb
parent3b7ba9ec41e594d08122d9504bd1fd87397bba60 (diff)
downloadredmine-63e7b990fe00de1f641f27f81c04b68fff0b62b2.tar.gz
redmine-63e7b990fe00de1f641f27f81c04b68fff0b62b2.zip
remove spaces inside {} of test/unit/user_import_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20362 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/user_import_test.rb')
-rw-r--r--test/unit/user_import_test.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/unit/user_import_test.rb b/test/unit/user_import_test.rb
index ff1a22566..5ca25e032 100644
--- a/test/unit/user_import_test.rb
+++ b/test/unit/user_import_test.rb
@@ -37,7 +37,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_login
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal 'user1', first.login
assert_equal 'user2', second.login
assert_equal 'user3', third.login
@@ -45,7 +45,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_firstname
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal 'One', first.firstname
assert_equal 'Two', second.firstname
assert_equal 'Three', third.firstname
@@ -53,7 +53,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_lastname
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal 'CSV', first.lastname
assert_equal 'Import', second.lastname
assert_equal 'User', third.lastname
@@ -61,7 +61,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_mail
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal 'user1@somenet.foo', first.mail
assert_equal 'user2@somenet.foo', second.mail
assert_equal 'user3@somenet.foo', third.mail
@@ -71,7 +71,7 @@ class UserImportTest < ActiveSupport::TestCase
default_language = 'fr'
with_settings :default_language => default_language do
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal 'en', first.language
assert_equal 'ja', second.language
assert_equal default_language, third.language
@@ -80,7 +80,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_admin
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert first.admin?
assert_not second.admin?
assert_not third.admin?
@@ -88,7 +88,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_auth_information
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
# use password
assert User.try_to_login(first.login, 'password', false)
assert User.try_to_login(second.login, 'password', false)
@@ -103,7 +103,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_map_must_change_password
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert first.must_change_password?
assert_not second.must_change_password?
assert_not third.must_change_password?
@@ -111,7 +111,7 @@ class UserImportTest < ActiveSupport::TestCase
def test_maps_status
import = generate_import_with_mapping
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert first.active?
assert second.locked?
assert third.registered?
@@ -123,7 +123,7 @@ class UserImportTest < ActiveSupport::TestCase
import = generate_import_with_mapping
import.mapping["cf_#{phone_number_cf.id}"] = '11'
import.save!
- first, second, third = new_records(User, 3) { import.run }
+ first, second, third = new_records(User, 3) {import.run}
assert_equal '000-1111-2222', first.custom_field_value(phone_number_cf)
assert_equal '333-4444-5555', second.custom_field_value(phone_number_cf)