d41d50d52b
and some other de-tenant changes, including removing the controller tenanting concerns
16 lines
347 B
Ruby
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
|