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_available_modules.rb
Size: Mime:
require 'helper'

class TestGetAvailableModules < ActiveSupport::TestCase
  context "A SugarCRM.connection" do
    should "return an array of modules when #get_modules" do
      assert_instance_of SugarCRM::Module, SugarCRM.connection.get_modules[0]
    end
  end
end