Sha256: 8fbfd343baf57b05e9196e14c0398addae65ef1290ab165f13014c8c45a37b66

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")

describe Animoto::Assets::TitleCard do
  
  it "should be a visual" do
    Animoto::Assets::TitleCard.should include(Animoto::Support::Visual)
  end
  
  describe "#to_hash" do
    before do
      @card = Animoto::Assets::TitleCard.new("hooray")
    end
    
    it "should have an 'h1' key with the title" do
      @card.to_hash.should have_key('h1')
      @card.to_hash['h1'].should == @card.title
    end

    describe "if there is a subtitle" do
      before do
        @card.subtitle = "for everything!"
      end

      it "should have an 'h2' key with the subtitle" do
        @card.to_hash.should have_key('h2')
        @card.to_hash['h2'].should == @card.subtitle
      end
    end
    
    describe "if spotlit" do
      before do
        @card.spotlit = true
      end
      
      it "should have a 'spotlit' key telling whether or not it is spotlit" do
        @card.to_hash.should have_key('spotlit')
        @card.to_hash['spotlit'].should == @card.spotlit?
      end
    end
  end
  
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
animoto-1.2.0 ./spec/animoto/assets/title_card_spec.rb
animoto-1.1.1 ./spec/animoto/assets/title_card_spec.rb
animoto-1.1.0 ./spec/animoto/assets/title_card_spec.rb
animoto-1.0.0 ./spec/animoto/assets/title_card_spec.rb
animoto-0.1.1.beta1 ./spec/animoto/assets/title_card_spec.rb
animoto-0.1.0.beta1 ./spec/animoto/assets/title_card_spec.rb
animoto-0.1.0.beta0 ./spec/animoto/assets/title_card_spec.rb