Sha256: 1f8650ea2bccab627bf17c6133cb785d179925659f1d1b0106fb426af9de2c5f
Contents?: true
Size: 512 Bytes
Versions: 7
Compression:
Stored size: 512 Bytes
Contents
require 'spec_helper' module ApnServer describe FeedbackClient do describe "#new" do let(:feedback_client) { ApnServer::FeedbackClient.new('cert.pem', 'feedback.sandbox.push.apple.com', 2196) } it "sets the pem path" do feedback_client.pem.should == 'cert.pem' end it "sets the host" do feedback_client.host.should == 'feedback.sandbox.push.apple.com' end it "sets the port" do feedback_client.port.should == 2196 end end end end
Version data entries
7 entries across 7 versions & 1 rubygems