blob: df7e9696a90dbfba66fe1f20bd422cecd4fa0ee0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
require "isolation/abstract_unit"
module ApplicationTests
class CheckRubyVersionTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
end
def teardown
teardown_app
end
test "rails initializes with ruby 1.8.7 or later, except for 1.9.1" do
if RUBY_VERSION < '1.8.7'
assert_rails_does_not_boot
elsif RUBY_VERSION == '1.9.1'
assert_rails_does_not_boot
else
assert_rails_boots
end
end
def assert_rails_boots
assert_nothing_raised "It appears that rails does not boot" do
require "rails/all"
end
end
def assert_rails_does_not_boot
$stderr = File.open("/dev/null", "w")
assert_raises(SystemExit) do
require "rails/all"
end
end
end
end
|