Skip to content

Commit

Permalink
テストのクラス名を修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
yocchan-git committed Apr 2, 2024
1 parent 43ea81c commit e8cbd47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/system/authentication/discord_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'application_system_test_case'

class Authentication::DiscordTest < ApplicationSystemTestCase
class Authentication::DiscordSystemTestCase < ApplicationSystemTestCase
setup do
OmniAuth.config.test_mode = true
OmniAuth.config.add_mock(:discord, { info: { name: 'discord_name' } })
Expand Down
4 changes: 3 additions & 1 deletion test/system/authentication/github_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

require 'application_system_test_case'

class Authentication::GithubTest < ApplicationSystemTestCase
class Authentication::GithubSystemTestCase < ApplicationSystemTestCase
fixtures :users

setup do
OmniAuth.config.test_mode = true
OmniAuth.config.add_mock(:github, { uid: '12345', info: { name: 'komagata', email: 'komagata@fjord.jp' } })
Expand Down

0 comments on commit e8cbd47

Please sign in to comment.