Sha256: f432cde1ea2c3b07eeeb54055256ce0db37a0715b24a6acf00e1dc486a3c28ff
Contents?: true
Size: 463 Bytes
Versions: 1
Compression:
Stored size: 463 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe KewegoParty do describe ".respond_to?" do it "should be true if method exists" do KewegoParty.respond_to?(:new, true).should be_true end end describe ".new" do it "should be a KewegoParty::Client" do KewegoParty.new.should be_a KewegoParty::Client end end describe ".delegate" do pending "should delegate missing methods to Kewego::Client" do end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kewego_party-0.0.1 | spec/kewego_party_spec.rb |