mhutter/teamdrive_api

View on GitHub
test/teamdrive_api/base_test.rb

Summary

Maintainability
A
0 mins
Test Coverage

Symbol with a boolean name - you probably meant to use false.
Open

      assert_equal expected, @r.payload_for(:my_command, false: false)
Severity: Minor
Found in test/teamdrive_api/base_test.rb by rubocop

This cop checks for :true and :false symbols. In most cases it would be a typo.

Example:

# bad
:true

# good
true

Example:

# bad
:false

# good
false

Symbol with a boolean name - you probably meant to use true.
Open

      assert_equal expected, @r.payload_for(:my_command, true: true)
Severity: Minor
Found in test/teamdrive_api/base_test.rb by rubocop

This cop checks for :true and :false symbols. In most cases it would be a typo.

Example:

# bad
:true

# good
true

Example:

# bad
:false

# good
false

There are no issues that match your filters.

Category
Status