Files
fizzy/saas/lib/tasks/fizzy/saas_tasks.rake
T
Jorge Manrubia 3ef5e4eeef Add record to track overridden limits
Before, we were relying on just changing the cards_count in account, but this
could create problems where the system to calculate the next card number fails due
to the unique constraint.
2025-12-16 12:00:23 +01:00

11 lines
263 B
Ruby

require "rake/testtask"
namespace :test do
desc "Run tests for fizzy-saas gem"
Rake::TestTask.new(saas: :environment) do |t|
t.libs << "test"
t.test_files = FileList[Fizzy::Saas::Engine.root.join("test/**/*_test.rb")]
t.warning = false
end
end