Sha256: 16f2153de63e0144c27c16ab030de7a29a31749cdc714b603d069b57af2a92f3

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

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

describe Animoto::Assets::TitleCard do
  
  describe "initialization" do
    before do
      @card = Animoto::Assets::TitleCard.new "hooray", "for everything", :spotlit => true
    end
    
    it "should set the title to the given string" do
      @card.title.should == 'hooray'
    end
    
    it "should set the subtitle to the given string" do
      @card.subtitle.should == 'for everything'
    end
    
    it "should set the spotlighting to the given value" do
      @card.should be_spotlit
    end
  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

1 entries across 1 versions & 1 rubygems

Version Path
animoto-1.3.0 ./spec/animoto/assets/title_card_spec.rb