# File tests/drivers/rhevm/realms_test.rb, line 18
    def test_02_each_realm_has_a_name
      get_auth_url '/api;driver=rhevm/realms'
      (last_xml_response/'realms/realm').each do |profile|
        (profile/'name').text.should_not == nil
        (profile/'name').text.should_not == ''
        (profile/'name').text.should == 'Default'
      end
    end