static_sidebar_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. require File.dirname(__FILE__) + '/../spec_helper'
  2. describe 'Given a new StaticSidebar' do
  3.   before(:each) { @sb = StaticSidebar.new }
  4.   it 'title should be Links' do
  5.     @sb.title.should == 'Links'
  6.   end
  7.   it 'body should be our default' do
  8.     @sb.body.should == StaticSidebar::DEFAULT_TEXT
  9.   end
  10.   it 'description should be set correctly' do
  11.     @sb.description.should == 'Static content, like links to other sites, advertisements, or blog meta-information'
  12.   end
  13. end