Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sugarcrm / test / connection / test_get_module_fields.rb
Size: Mime:
require 'helper'

class TestModuleFields < ActiveSupport::TestCase
  context "A SugarCRM.connection" do
    should "return a hash of module fields when #get_module_fields" do
      fields = SugarCRM.connection.get_module_fields("Users")
      assert_kind_of Hash, fields
      assert "address_city", fields.keys[0]
    end
  end
end