smellsblue/attestify

View on GitHub

Showing 4 of 8 total issues

Class Reporter has 27 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Reporter # rubocop:disable Metrics/ClassLength
    attr_accessor :timer

    def initialize
      @failures = []
Severity: Minor
Found in lib/attestify/reporter.rb - About 3 hrs to fix

    File assertions.rb has 293 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "stringio"
    require "tempfile"
    
    module Attestify
      # Assertion methods that record assertion results via the
    Severity: Minor
    Found in lib/attestify/assertions.rb - About 3 hrs to fix

      Method simplify_backtrace_locations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def simplify_backtrace_locations(backtrace_locations)
              result = backtrace_locations.dup
              result.pop while !result.empty? && !location_in_attestify?(result.last)
              result.pop while !result.empty? && location_in_attestify?(result.last)
              result
      Severity: Minor
      Found in lib/attestify/assertion_results.rb - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method assert_42 has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def assert_42(expected, message = nil) # rubocop:disable Metrics/MethodLength
            record_assert(
              if expected.is_a?(Numeric)
                expected == 42
              elsif expected.is_a?(String)
      Severity: Minor
      Found in lib/attestify/assertions.rb - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Severity
      Category
      Status
      Source
      Language