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    
lobbyist-ruby / spec / lobbyist / v2 / customer_call_spec.rb
Size: Mime:
require 'spec_helper'

describe Lobbyist::V2::CustomerCall, customer_call: true do
  describe "#destroy" do
    it 'should return an instance' do
      VCR.use_cassette('v2/customer_call_destroy') do
        customer_call = Lobbyist::V2::CustomerCall.destroy(2)
        expect(customer_call).to be_a(Lobbyist::V2::CustomerCall)
      end
    end
  end
end