1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-09-18 14:00:12 +02:00

add a rakefile so 'rvm specs' works

git-svn-id: file:///home/svn/framework3/trunk@7896 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee 2009-12-17 01:07:51 +00:00
parent 0fa275b53b
commit 862efac37d
5 changed files with 7 additions and 0 deletions

View File

7
test/tests/rakefile Normal file
View File

@ -0,0 +1,7 @@
require 'rubygems'
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new do |t|
t.ruby_opts = ['-rtest/unit']
t.spec_files = FileList['*_test.rb']
end