dragonfly 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of dragonfly might be problematic. Click here for more details.

@@ -1,20 +0,0 @@
1
- require File.dirname(__FILE__) + '/../spec_helper'
2
-
3
- describe "Deprecated stuff" do
4
-
5
- describe "job urls" do
6
-
7
- before(:each) do
8
- @app = test_app.configure_with(:imagemagick) do |c|
9
- # c.log = Logger.new($stdout)
10
- end
11
- @job = @app.fetch('eggs')
12
- end
13
-
14
- it { @job.url(:gif).should == @job.gif.url }
15
- it { @job.url('20x20').should == @job.thumb('20x20').url }
16
- it { @job.url('20x20', :gif).should == @job.thumb('20x20', :gif).url }
17
-
18
- end
19
-
20
- end