Initial working version of the BurstNet test API.

This commit is contained in:
2013-06-02 16:06:53 +01:00
commit 74d5b88ecd
34 changed files with 611 additions and 0 deletions

15
Rakefile Normal file
View File

@@ -0,0 +1,15 @@
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task'
require 'spree/testing_support/extension_rake'
RSpec::Core::RakeTask.new
task :default => [:spec]
desc 'Generates a dummy app for testing'
task :test_app do
ENV['LIB_NAME'] = 'spree_burstnet'
Rake::Task['extension:test_app'].invoke
end