Sha256: 9f0d45bece1972bd4793d155b5cb41f7eb995570e4e8b5de5142b47d79cf07b6
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
require 'spec_helper' describe Viking::Base do def valid_base_options { :api_key => "1234abc", :blog => "wiki.mysite.com" } end let(:base) { Viking::Base.new({}) } describe "#mark_as_spam_or_ham" do it "should mark as spam when is_spam is true" do base.should_receive(:mark_as_spam).and_return("I will be spam") base.mark_as_spam_or_ham(true, {}).should == "I will be spam" end it "should mark as ham when is_spam is false" do base.should_receive(:mark_as_ham).and_return("I will be ham") base.mark_as_spam_or_ham(false, {}).should == "I will be ham" end end describe "#invalid_options?" do it "should be false if the required options are non-nil" do base.options = valid_base_options base.should_not be_invalid_options end it "should be true if the options don't include an API key" do base.options = valid_base_options.except(:api_key) base.should be_invalid_options end it "should be true if the options don't include a blog address" do base.options = valid_base_options.except(:blog) base.should be_invalid_options end end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
the_viking-1.0.0 | spec/viking/base_spec.rb |
viking-1.0.1 | spec/viking/base_spec.rb |
viking-1.0.0 | spec/viking/base_spec.rb |