Add rubocop-factory_bot and fix warnings
This commit is contained in:
parent
cbc3004c45
commit
52296d1cad
4 changed files with 7 additions and 2 deletions
|
@ -2,6 +2,7 @@ inherit_from: .rubocop_todo.yml
|
|||
|
||||
require:
|
||||
- rubocop-capybara
|
||||
- rubocop-factory_bot
|
||||
- rubocop-minitest
|
||||
- rubocop-performance
|
||||
- rubocop-rails
|
||||
|
|
1
Gemfile
1
Gemfile
|
@ -153,6 +153,7 @@ group :test do
|
|||
gem "rails-controller-testing"
|
||||
gem "rubocop"
|
||||
gem "rubocop-capybara"
|
||||
gem "rubocop-factory_bot"
|
||||
gem "rubocop-minitest"
|
||||
gem "rubocop-performance"
|
||||
gem "rubocop-rails"
|
||||
|
|
|
@ -444,6 +444,8 @@ GEM
|
|||
parser (>= 3.2.1.0)
|
||||
rubocop-capybara (2.18.0)
|
||||
rubocop (~> 1.41)
|
||||
rubocop-factory_bot (2.23.1)
|
||||
rubocop (~> 1.33)
|
||||
rubocop-minitest (0.31.0)
|
||||
rubocop (>= 1.39, < 2.0)
|
||||
rubocop-performance (1.17.1)
|
||||
|
@ -603,6 +605,7 @@ DEPENDENCIES
|
|||
rotp
|
||||
rubocop
|
||||
rubocop-capybara
|
||||
rubocop-factory_bot
|
||||
rubocop-minitest
|
||||
rubocop-performance
|
||||
rubocop-rails
|
||||
|
|
|
@ -55,13 +55,13 @@ class BrowseControllerTest < ActionDispatch::IntegrationTest
|
|||
end
|
||||
|
||||
def test_read_node
|
||||
node = create :node
|
||||
node = create(:node)
|
||||
browse_check :node_path, node.id, "browse/feature"
|
||||
assert_select "a[href='#{api_node_path node}']", :count => 1
|
||||
end
|
||||
|
||||
def test_read_deleted_node
|
||||
node = create :node, :visible => false
|
||||
node = create(:node, :visible => false)
|
||||
browse_check :node_path, node.id, "browse/feature"
|
||||
assert_select "a[href='#{api_node_path node}']", :count => 0
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue