Skip to content
This repository was archived by the owner on Oct 5, 2018. It is now read-only.

Commit 71f60bd

Browse files
author
Scott Carleton
committed
Removed most of Test::Unit
Keeping base_delayed_paperclip_test until test parity achieved Dropped support for rbx-19
1 parent 30f7156 commit 71f60bd

9 files changed

+10
-127
lines changed

.travis.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: ruby
33
rvm:
44
- 2.1
55
- 2.0
6-
- rbx-19mode
76

87
gemfile:
98
- gemfiles/3.2.gemfile
@@ -12,14 +11,10 @@ gemfile:
1211

1312
sudo: false
1413

15-
matrix:
16-
allow_failures:
17-
- rvm: rbx-19mode
18-
1914
services:
2015
- redis
2116

22-
script: "bundle exec rake clean test spec"
17+
script: "bundle exec rake clean spec"
2318

2419
notifications:
2520
email:

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,4 @@ for testing. Run all tests with
272272
````
273273
# Rspec on all versions
274274
rake appraisal spec
275-
# Test Unit on all versions (deprecated)
276-
rake appraisal test
277275
````

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require 'rake/testtask'
99
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
1010

1111
desc 'Default: run unit tests.'
12-
task :default => [:clean, 'appraisal:install', :all]
12+
task default: [:clean, 'appraisal:install', :all]
1313

1414
desc 'Test the delayed paperclip plugin under all supported Rails versions.'
1515
task :all do |t|

test/base_delayed_paperclip_test.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
###
2+
# DEPRECATED, Don't Use
3+
###
4+
15
module BaseDelayedPaperclipTest
26
def setup
37
super

test/delayed_paperclip_test.rb

-47
This file was deleted.

test/fixtures/12k.png

-11.8 KB
Binary file not shown.

test/resque_paperclip_test.rb

-32
This file was deleted.

test/sidekiq_paperclip.rb

-39
This file was deleted.

test/test_helper.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
###
2+
# DEPRECATED, Don't Use
3+
###
4+
15
require 'rubygems'
26

37
begin

0 commit comments

Comments
 (0)