# File lib/rhc/rest/mock.rb, line 479
    def cartridges
      premium_embedded = MockRestCartridge.new(self, "premium_cart", "embedded")
      premium_embedded.usage_rate = 0.05

      [MockRestCartridge.new(self, "mock_cart-1", "embedded"), # code should sort this to be after standalone
       MockRestCartridge.new(self, "mock_standalone_cart-1", "standalone"),
       MockRestCartridge.new(self, "mock_standalone_cart-2", "standalone"),
       MockRestCartridge.new(self, "mock_unique_standalone_cart-1", "standalone"),
       MockRestCartridge.new(self, "jenkins-1.4", "standalone"),
       MockRestCartridge.new(self, "mock_cart-2", "embedded"),
       MockRestCartridge.new(self, "unique_mock_cart-1", "embedded"),
       MockRestCartridge.new(self, "jenkins-client-1.4", "embedded"),
       premium_embedded
      ]
    end