public
Fork of Shopify/active_merchant
Description: Active Merchant is a simple payment abstraction library used in and sponsored by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.
Homepage: http://activemerchant.org
Clone URL: git://github.com/econsultancy/active_merchant.git
Added task for running individual remote tests in isolation
mocoso (author)
Fri Aug 29 09:49:58 -0700 2008
tomstuart (committer)
Fri Sep 05 08:14:03 -0700 2008
commit  759e0bc1d39c3de0069a60febe80c93f260d67ec
tree    0e39fae45399d7d8805b54bc46b4d90ce64b389d
parent  fef8573cf67856099e34c40a5310c850fec3db05
...
35
36
37
 
 
 
 
 
 
 
 
 
 
38
39
40
...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
0
@@ -35,6 +35,16 @@ namespace :test do
0
     t.verbose = true
0
   end
0
 
0
+ # Single remote tests
0
+ Dir.glob('test/remote/**/*_test.rb').each do |filename|
0
+ basename = File.basename(filename, ".rb")
0
+ Rake::TestTask.new(basename) do |t|
0
+ t.pattern = filename
0
+ t.ruby_opts << '-rubygems'
0
+ t.verbose = true
0
+ end
0
+ end
0
+
0
 end
0
 
0
 # Genereate the RDoc documentation

Comments

    No one has commented yet.