Files
once-campfire/test/controllers/accounts/bots/keys_controller_test.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

15 lines
323 B
Ruby

require "test_helper"
class Accounts::Bots::KeysControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in :david
end
test "update" do
assert_changes -> { users(:bender).reload.bot_token } do
put account_bot_key_url(users(:bender))
assert_redirected_to account_bots_url
end
end
end