schedular 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/schedular/time.rb +4 -2
- data/test/rails_app/config/environment.rb +2 -2
- data/test/support/migrations.rb +2 -2
- data/test/test_time.rb +1 -3
- metadata +31 -52
- data/test/rails_app/README +0 -243
- data/test/rails_app/doc/README_FOR_APP +0 -2
- data/test/rails_app/public/404.html +0 -30
- data/test/rails_app/public/422.html +0 -30
- data/test/rails_app/public/500.html +0 -30
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_app/public/images/rails.png +0 -0
- data/test/rails_app/public/index.html +0 -275
- data/test/rails_app/public/javascripts/application.js +0 -2
- data/test/rails_app/public/javascripts/controls.js +0 -963
- data/test/rails_app/public/javascripts/dragdrop.js +0 -973
- data/test/rails_app/public/javascripts/effects.js +0 -1128
- data/test/rails_app/public/javascripts/prototype.js +0 -4320
- data/test/rails_app/public/robots.txt +0 -5
- data/test/rails_app/script/about +0 -4
- data/test/rails_app/script/console +0 -3
- data/test/rails_app/script/dbconsole +0 -3
- data/test/rails_app/script/destroy +0 -3
- data/test/rails_app/script/generate +0 -3
- data/test/rails_app/script/performance/benchmarker +0 -3
- data/test/rails_app/script/performance/profiler +0 -3
- data/test/rails_app/script/plugin +0 -3
- data/test/rails_app/script/runner +0 -3
- data/test/rails_app/script/server +0 -3
- data/test/rails_app/test/performance/browsing_test.rb +0 -9
- data/test/rails_app/test/test_helper.rb +0 -38
- data/test/rails_app/tmp/restart.txt +0 -0
data/test/rails_app/script/about
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
ENV["RAILS_ENV"] = "test"
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
-
require 'test_help'
|
4
|
-
|
5
|
-
class ActiveSupport::TestCase
|
6
|
-
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
-
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
-
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
-
# between every test method. Fewer database queries means faster tests.
|
10
|
-
#
|
11
|
-
# Read Mike Clark's excellent walkthrough at
|
12
|
-
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
-
#
|
14
|
-
# Every Active Record database supports transactions except MyISAM tables
|
15
|
-
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
-
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
-
# is recommended.
|
18
|
-
#
|
19
|
-
# The only drawback to using transactional fixtures is when you actually
|
20
|
-
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
-
# any transactions started in your code will be automatically rolled back.
|
22
|
-
self.use_transactional_fixtures = true
|
23
|
-
|
24
|
-
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
-
# would need people(:david). If you don't want to migrate your existing
|
26
|
-
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
-
# instantiated fixtures translates to a database query per test method),
|
28
|
-
# then set this back to true.
|
29
|
-
self.use_instantiated_fixtures = false
|
30
|
-
|
31
|
-
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
-
#
|
33
|
-
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
-
# -- they do not yet inherit this setting
|
35
|
-
fixtures :all
|
36
|
-
|
37
|
-
# Add more helper methods to be used by all tests here...
|
38
|
-
end
|
File without changes
|