- 'test/functional/repositories_git_controller_test.rb'
- 'test/functional/timelog_controller_test.rb'
- 'test/functional/workflows_controller_test.rb'
- - 'test/helpers/application_helper_test.rb'
- 'test/unit/attachment_test.rb'
- 'test/unit/lib/redmine/export/pdf_test.rb'
- 'test/unit/project_copy_test.rb'
- 'test/functional/my_controller_test.rb'
- 'test/functional/settings_controller_test.rb'
- 'test/functional/users_controller_test.rb'
- - 'test/helpers/application_helper_test.rb'
- 'test/unit/attachment_test.rb'
- 'test/unit/lib/redmine/export/pdf_test.rb'
- 'lib/redmine/platform.rb'
- 'lib/redmine/scm/adapters/cvs_adapter.rb'
- 'lib/redmine/scm/adapters/filesystem_adapter.rb'
- - 'test/helpers/application_helper_test.rb'
- 'test/unit/attachment_test.rb'
- 'test/unit/lib/redmine/export/pdf_test.rb'
- 'test/unit/project_test.rb'
a1 = Attachment.find(16)
assert_equal "testfile.png", a1.filename
assert a1.readable?
- assert (! a1.visible?(User.anonymous))
+ assert_not a1.visible?(User.anonymous)
assert a1.visible?(User.find(2))
a2 = Attachment.find(17)
assert_equal "testfile.PNG", a2.filename
assert a2.readable?
- assert (! a2.visible?(User.anonymous))
+ assert_not a2.visible?(User.anonymous)
assert a2.visible?(User.find(2))
assert a1.created_on < a2.created_on