view vendor/plugins/redmine_checkout/lib/tasks/spec.rake @ 593:f12948591050 feature_14

Import redmine_tags plugin (from https://github.com/ixti/redmine_tags.git commit f09ad441f5dc39104b06) for testing
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Mon, 15 Aug 2011 15:13:37 +0100
parents 020926a36823
children
line wrap: on
line source
begin
  require "spec/rake/spectask"
  namespace :spec do
    namespace :plugins do
      desc "Runs the examples for redmine_checkout"
      Spec::Rake::SpecTask.new(:redmine_checkout) do |t|
        t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
        t.spec_files = FileList['vendor/plugins/redmine_checkout/spec/**/*_spec.rb']
      end
    end
  end
  task :spec => "spec:plugins:redmine_checkout"
rescue LoadError
end