aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-01 18:55:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-01 18:55:04 +0000
commita6fefad354d36f3e9a91f8582659ffcda1a35855 (patch)
tree9ead716b17c543e3295c08b9df95adb2dc17374d /activerecord/Rakefile
parent3e0077f54dc451a551360f7af9b5a9c96b3253af (diff)
downloadrails-a6fefad354d36f3e9a91f8582659ffcda1a35855.tar.gz
rails-a6fefad354d36f3e9a91f8582659ffcda1a35855.tar.bz2
rails-a6fefad354d36f3e9a91f8582659ffcda1a35855.zip
Added the final touches to the Microsoft SQL Server adapter by DeLynn Berry that makes it suitable for actual use #394 [DeLynn Barry]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@302 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/Rakefile')
-rwxr-xr-xactiverecord/Rakefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 9352a4b6b8..30db268556 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -45,6 +45,12 @@ Rake::TestTask.new("test_sqlite") { |t|
t.verbose = true
}
+Rake::TestTask.new("test_sqlserver") { |t|
+ t.libs << "test" << "test/connections/native_sqlserver"
+ t.pattern = 'test/*_test.rb'
+ t.verbose = true
+}
+
# Generate the RDoc documentation
Rake::RDocTask.new { |rdoc|