##// END OF EJS Templates
Fixed STARTTLS option key (#19232)....
Fixed STARTTLS option key (#19232). git-svn-id: http://svn.redmine.org/redmine/trunk@14047 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13510:d85f73a30d48
r13665:2800598832d2
Show More
issue_statuses_test.rb
32 lines | 1.3 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Adds API response to /issue_statuses to get the list of all available statuses (#7180)....
r7758 # Redmine - project management software
Jean-Philippe Lang
Copyright update....
r13490 # Copyright (C) 2006-2015 Jean-Philippe Lang
Jean-Philippe Lang
Adds API response to /issue_statuses to get the list of all available statuses (#7180)....
r7758 #
# This program is free software; you can redistribute it and/or
# 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.
require File.expand_path('../../../test_helper', __FILE__)
Jean-Philippe Lang
Adds a subclass of ActionDispatch::IntegrationTest for API tests....
r11023 class Redmine::ApiTest::IssueStatusesTest < Redmine::ApiTest::Base
Jean-Philippe Lang
Adds API response to /issue_statuses to get the list of all available statuses (#7180)....
r7758 fixtures :issue_statuses
Jean-Philippe Lang
Removed some shoulda context....
r11632 test "GET /issue_statuses.xml should return issue statuses" do
get '/issue_statuses.xml'
Jean-Philippe Lang
Adds API response to /issue_statuses to get the list of all available statuses (#7180)....
r7758
Jean-Philippe Lang
Removed some shoulda context....
r11632 assert_response :success
assert_equal 'application/xml', @response.content_type
Jean-Philippe Lang
Upgrade to Rails 4.2.0 (#14534)....
r13510 assert_select 'issue_statuses[type=array] issue_status id', :text => '2' do
Jean-Philippe Lang
Replaced remaining #assert_tag with #assert_select....
r13242 assert_select '~ name', :text => 'Assigned'
end
Jean-Philippe Lang
Adds API response to /issue_statuses to get the list of all available statuses (#7180)....
r7758 end
end