notebook/test/test_helper.rb
2025-07-16 13:09:21 -07:00

38 lines
1.2 KiB
Ruby

ENV['RAILS_ENV'] ||= 'test'
ENV['RAILS_GROUPS'] ||= 'test'
require 'minitest/reporters'
Minitest::Reporters.use! [Minitest::Reporters::DefaultReporter.new]
require_relative "../config/environment"
require "rails/test_help"
class ActiveSupport::TestCase
# Run tests in parallel with specified workers
# parallelize(workers: :number_of_processors) # Temporarily disabled to fix test issues
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
fixtures :all
# Add more helper methods to be used by all tests here...
end
class SmokeTest
def self.urls(list_of_urls)
# puts "Smoke testing URLs:"
list_of_urls.each do |url_name|
url = Rails.application.routes.url_helpers.send(url_name) rescue "INVALID URL: #{url_name}"
# puts "#{url_name}: #{url}"
ActionDispatch::IntegrationTest.test "should get #{url_name}" do
get(url)
# Root URL redirects authenticated users to /my/content
if url_name.to_s == 'root_url' && response.status == 302
assert_redirected_to 'http://notebook.ai/my/content'
else
assert_response(:success)
end
end
end
end
end