rspec/rspec-core

View on GitHub
lib/rspec/core/example.rb

Summary

Maintainability
C
1 day
Test Coverage

File example.rb has 343 lines of code (exceeds 250 allowed). Consider refactoring.

module RSpec
  module Core
    # Wrapper for an instance of a subclass of {ExampleGroup}. An instance of
    # `RSpec::Core::Example` is returned by example definition methods
    # such as {ExampleGroup.it it} and is yielded to the {ExampleGroup.it it},
Severity: Minor
Found in lib/rspec/core/example.rb - About 4 hrs to fix

    Class Example has 33 methods (exceeds 20 allowed). Consider refactoring.

        class Example
          # @private
          #
          # Used to define methods that delegate to this example's metadata.
          def self.delegate_to_metadata(key)
    Severity: Minor
    Found in lib/rspec/core/example.rb - About 4 hrs to fix

      Method run has 37 lines of code (exceeds 25 allowed). Consider refactoring.

            def run(example_group_instance, reporter)
              @example_group_instance = example_group_instance
              @reporter = reporter
              RSpec.configuration.configure_example(self, hooks)
              RSpec.current_example = self
      Severity: Minor
      Found in lib/rspec/core/example.rb - About 1 hr to fix

        Method run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.

              def run(example_group_instance, reporter)
                @example_group_instance = example_group_instance
                @reporter = reporter
                RSpec.configuration.configure_example(self, hooks)
                RSpec.current_example = self
        Severity: Minor
        Found in lib/rspec/core/example.rb - About 1 hr 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

        There are no issues that match your filters.

        Category