Sha256: c1fa10a6c0318ff7d497a44ef6d85ecda64e9753177cbe54fee1e21595bd32dd
Contents?: true
Size: 753 Bytes
Versions: 3
Compression:
Stored size: 753 Bytes
Contents
require "spec_helper" describe Corkboard::Client do let(:client) { empty_client } let(:instance) { client.new } describe "#strategy" do it "is pending" do pending end end describe "#callback_url" do it "is pending" do pending end end describe "#preload" do it "is pending" do pending end end describe "#recent" do it "is pending" do pending end end describe "#subscribe" do it "is pending" do pending end end describe "#subscribe_callback" do it "is pending" do pending end end def empty_client @empty_client ||= Class.new do include Corkboard::Client def self.name 'Example' end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
corkboard-0.1.3 | spec/corkboard/client_spec.rb |
corkboard-0.1.2 | spec/corkboard/client_spec.rb |
corkboard-0.1.1 | spec/corkboard/client_spec.rb |