File: ruby-tests.rake

package info (click to toggle)
ruby-hiera 1.0.0~rc3-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 208 kB
  • sloc: ruby: 986; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 191 bytes parent folder | download
1
2
3
4
5
6
7
8
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:test) do |t|
	t.pattern = 'spec/**/*_spec.rb'
	t.rspec_opts = File.read("spec/spec.opts").chomp || ""
end

task :default => [:test]