# File tests/drivers/rackspace/hardware_profiles_test.rb, line 26
    def test_03_each_hardware_profile_has_correct_properties
      get_auth_url '/api;driver=rackspace/hardware_profiles'
      (last_xml_response/'hardware_profiles/hardware_profile').each do |profile|
        (profile/'property[@name="architecture"]').first[:value].should == 'x86_64'
        (profile/'property[@name="memory"]').first[:unit].should == 'MB'
        (profile/'property[@name="memory"]').first[:kind].should == 'fixed'
        (profile/'property[@name="storage"]').first[:unit].should == 'GB'
        (profile/'property[@name="storage"]').first[:kind].should == 'fixed'
      end
    end