Added rails api with postrgess db config

This commit is contained in:
2021-10-20 11:19:22 +02:00
parent 892ecac662
commit 799f55335f
58 changed files with 1066 additions and 0 deletions

13
test/test_helper.rb Normal file
View File

@@ -0,0 +1,13 @@
ENV['RAILS_ENV'] ||= 'test'
require_relative "../config/environment"
require "rails/test_help"
class ActiveSupport::TestCase
# Run tests in parallel with specified workers
parallelize(workers: :number_of_processors)
# 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