1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/application/test_test.rb

68 lines
1.4 KiB
Ruby
Raw Normal View History

2010-01-04 18:13:45 -05:00
require 'isolation/abstract_unit'
module ApplicationTests
2012-01-05 20:30:17 -05:00
class TestTest < ActiveSupport::TestCase
2010-01-04 18:13:45 -05:00
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
end
def teardown
teardown_app
end
2010-01-04 18:13:45 -05:00
test "truth" do
app_file 'test/unit/foo_test.rb', <<-RUBY
require 'test_helper'
class FooTest < ActiveSupport::TestCase
def test_truth
assert true
end
end
RUBY
run_test_file 'unit/foo_test.rb'
2010-01-04 18:13:45 -05:00
end
test "integration test" do
controller 'posts', <<-RUBY
class PostsController < ActionController::Base
end
RUBY
app_file 'app/views/posts/index.html.erb', <<-HTML
Posts#index
HTML
app_file 'test/integration/posts_test.rb', <<-RUBY
require 'test_helper'
class PostsTest < ActionDispatch::IntegrationTest
def test_index
get '/posts'
assert_response :success
assert_template "index"
end
end
RUBY
run_test_file 'integration/posts_test.rb'
end
2010-01-04 18:13:45 -05:00
private
def run_test_file(name)
2010-01-04 18:13:45 -05:00
result = ruby '-Itest', "#{app_path}/test/#{name}"
assert_equal 0, $?.to_i, result
end
def ruby(*args)
Dir.chdir(app_path) do
`RUBYLIB='#{$:.join(':')}' #{Gem.ruby} #{args.join(' ')}`
end
end
end
end