mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-03 06:21:49 +01:00
prepare to update memory_test_fix plugin
git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@416 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
parent
d9d5ff4d06
commit
0da21e3b96
5 changed files with 0 additions and 63 deletions
20
tracks/vendor/plugins/memory_test_fix/README
vendored
20
tracks/vendor/plugins/memory_test_fix/README
vendored
|
|
@ -1,20 +0,0 @@
|
|||
MemoryTestFix
|
||||
=============
|
||||
|
||||
A simple fix to run tests with sqlite. From example at
|
||||
|
||||
http://blog.seagul.co.uk/articles/2006/02/08/in-memory-sqlite-database-for-rails-testing
|
||||
|
||||
In your database.yml, use
|
||||
|
||||
test:
|
||||
adapter: sqlite3
|
||||
database: ":memory:"
|
||||
|
||||
It runs much faster!
|
||||
|
||||
== Authors
|
||||
|
||||
Chris Roos
|
||||
|
||||
adapted by Geoffrey Grosenbach, http://nubyonrails.com
|
||||
22
tracks/vendor/plugins/memory_test_fix/Rakefile
vendored
22
tracks/vendor/plugins/memory_test_fix/Rakefile
vendored
|
|
@ -1,22 +0,0 @@
|
|||
require 'rake'
|
||||
require 'rake/testtask'
|
||||
require 'rake/rdoctask'
|
||||
|
||||
desc 'Default: run unit tests.'
|
||||
task :default => :test
|
||||
|
||||
desc 'Test the memory_test_fix plugin.'
|
||||
Rake::TestTask.new(:test) do |t|
|
||||
t.libs << 'lib'
|
||||
t.pattern = 'test/**/*_test.rb'
|
||||
t.verbose = true
|
||||
end
|
||||
|
||||
desc 'Generate documentation for the memory_test_fix plugin.'
|
||||
Rake::RDocTask.new(:rdoc) do |rdoc|
|
||||
rdoc.rdoc_dir = 'rdoc'
|
||||
rdoc.title = 'MemoryTestFix'
|
||||
rdoc.options << '--line-numbers' << '--inline-source'
|
||||
rdoc.rdoc_files.include('README')
|
||||
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||
end
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
author: Chris Roos
|
||||
summary: Makes SQLite3 memory tests possible by preloading the schema.
|
||||
homepage: http://blog.seagul.co.uk/articles/2006/02/08/in-memory-sqlite-database-for-rails-testing
|
||||
plugin: http://topfunky.net/svn/plugins/memory_test_fix
|
||||
license: MIT
|
||||
version: 0.1
|
||||
rails_version: 1.1+
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
|
||||
require 'memory_test_fix'
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
# MemoryTestFix
|
||||
def in_memory_database?
|
||||
ENV["RAILS_ENV"] == "test" and
|
||||
ActiveRecord::Base.connection.class == ActiveRecord::ConnectionAdapters::SQLiteAdapter and
|
||||
Rails::Configuration.new.database_configuration['test']['database'] == ':memory:'
|
||||
end
|
||||
|
||||
if in_memory_database?
|
||||
puts "Creating sqlite in memory database"
|
||||
load "#{RAILS_ROOT}/db/schema.rb" # use db agnostic schema by default
|
||||
# ActiveRecord::Migrator.up('db/migrate') # use migrations
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue