diff options
Diffstat (limited to 'test/integration/api_test/trackers_test.rb')
-rw-r--r-- | test/integration/api_test/trackers_test.rb | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/test/integration/api_test/trackers_test.rb b/test/integration/api_test/trackers_test.rb index 80188a3de..d85e2a4c3 100644 --- a/test/integration/api_test/trackers_test.rb +++ b/test/integration/api_test/trackers_test.rb @@ -29,18 +29,9 @@ class Redmine::ApiTest::TrackersTest < Redmine::ApiTest::Base assert_response :success assert_equal 'application/xml', @response.content_type - assert_tag :tag => 'trackers', - :attributes => {:type => 'array'}, - :child => { - :tag => 'tracker', - :child => { - :tag => 'id', - :content => '2', - :sibling => { - :tag => 'name', - :content => 'Feature request' - } - } - } + + assert_select 'trackers[type=array] tracker id:content(2)' do + assert_select '~ name', :text => 'Feature request' + end end end |