Sha256: 6d735eb68cbca6ffb0b2dc4259187f606963de4acc84c52c64a9da564b717c7f

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

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

class TestModel < ActiveRecord::Base
  include Paperclip
  has_attached_file   :attachment,
                      :styles => { :large => '1000x1000>'},
                      :on_demand_styles => { :small => "600x600>" }
end

describe ThumbnailOnDemand do
  before(:each) do

  end
  describe "#thumbnail" do
    it "should return a string"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thumbnail_on_demand-0.1.0 spec/thumbnail_on_demand_spec.rb