diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-05-16 22:56:46 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-05-16 22:56:46 +0000 |
commit | a955a5140b5f737cf1feac6f61feae541a3c1ed9 (patch) | |
tree | 6f0f47e935c349320b26b3bac709306b7dc69f06 /test/unit/helpers | |
parent | 5e1576b8b4e50e671b63467a19ed5018125a49d2 (diff) | |
download | redmine-a955a5140b5f737cf1feac6f61feae541a3c1ed9.tar.gz redmine-a955a5140b5f737cf1feac6f61feae541a3c1ed9.zip |
remove trailing white-spaces from unit issues helper test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5804 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers')
-rw-r--r-- | test/unit/helpers/issues_helper_test.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/helpers/issues_helper_test.rb b/test/unit/helpers/issues_helper_test.rb index 7a40abe08..7f78f0994 100644 --- a/test/unit/helpers/issues_helper_test.rb +++ b/test/unit/helpers/issues_helper_test.rb @@ -5,12 +5,12 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -43,25 +43,25 @@ class IssuesHelperTest < HelperTestCase def request @request ||= ActionController::TestRequest.new end - + def test_issue_heading assert_equal "Bug #1", issue_heading(Issue.find(1)) end - + def test_issues_destroy_confirmation_message_with_one_root_issue assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find(1)) end - + def test_issues_destroy_confirmation_message_with_an_arrayt_of_root_issues assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2])) end - + def test_issues_destroy_confirmation_message_with_one_parent_issue Issue.find(2).update_attribute :parent_issue_id, 1 assert_equal l(:text_issues_destroy_confirmation) + "\n" + l(:text_issues_destroy_descendants_confirmation, :count => 1), issues_destroy_confirmation_message(Issue.find(1)) end - + def test_issues_destroy_confirmation_message_with_one_parent_issue_and_its_child Issue.find(2).update_attribute :parent_issue_id, 1 assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2])) |