Sha256: 8ba5f55e34d2fb404c786fc15cfca1cea6c8be25599d9cca614560fe6671b1de

Contents?: true

Size: 1.07 KB

Versions: 8

Compression:

Stored size: 1.07 KB

Contents

require 'spec_helper'

module Beatport::Catalog
  describe Slide do
    pending "deprecated?"

=begin
    describe '.header' do
      it "should get the header slides for the home page" do
        slides = Slide.header
        slides.length.should be >= 1
      end
      
      it "should get the headers slides for the trance page" do
        slides = Slide.header
        slides.length.should be >= 1
      end
    end

    describe '.feature' do
      it "should get the feature slides for the home page" do
        slides = Slide.feature
        slides.length.should be > 1
      end
      
      it "should get the feature slides for the trance page" do
        slides = Slide.feature
        slides.length.should be > 1
      end
    end

    describe '.small' do
      it "should get the small slides for the home page" do
        slides = Slide.small
        slides.length.should be > 1
      end
      
      it "should get the small slides for the trance page" do
        slides = Slide.small
        slides.length.should be > 1
      end
    end
=end
  end
end
    
    
    
    

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
beatport-0.2.1 spec/catalog/slide_spec.rb
beatport-0.2.0 spec/catalog/slide_spec.rb
beatport-0.1.10 spec/catalog/slide_spec.rb
beatport-0.1.9 spec/catalog/slide_spec.rb
beatport-0.1.8 spec/catalog/slide_spec.rb
beatport-0.1.7 spec/catalog/slide_spec.rb
beatport-0.1.6 spec/catalog/slide_spec.rb
beatport-0.1.5 spec/catalog/slide_spec.rb