Files
Mike Dalessio d41d50d52b Account.sole → Current.account
and some other de-tenant changes, including removing the controller
tenanting concerns
2025-11-17 09:11:40 -05:00

16 lines
347 B
Ruby

require "test_helper"
class Account::SedeableTest < ActiveSupport::TestCase
setup do
@account = Current.account
end
test "setup_customer_template adds boards, cards, and comments" do
assert_changes -> { Board.count } do
assert_changes -> { Card.count } do
@account.setup_customer_template
end
end
end
end