decko-commons/decko

View on GitHub
card/spec/card/content_spec.rb

Summary

Maintainability
B
5 hrs
Test Coverage

File content_spec.rb has 367 lines of code (exceeds 250 allowed). Consider refactoring.
Open

RSpec.describe Card::Content do
  EXAMPLES = {
    nests: {
      content: "Some Literals: \\[{I'm not| a link]}, and " \
                '\\{{This Card|Is not Nestd}}' \
Severity: Minor
Found in card/spec/card/content_spec.rb - About 4 hrs to fix

Similar blocks of code found in 2 locations. Consider refactoring.
Open

      it "renders links and nests" do
        @example = :links_and_nests
        expect(cobj.as_json.to_s).to match(/not rendered/)
        cobj.process_chunks(&@render_block)
        rdr = cobj.as_json.to_json
Severity: Minor
Found in card/spec/card/content_spec.rb and 1 other location - About 30 mins to fix
card/spec/card/content_spec.rb on lines 280..286

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 32.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

      it "renders all nests" do
        @example = :nests
        expect(cobj.as_json.to_s).to match(/not rendered/)
        cobj.process_chunks(&@render_block)
        rdr = cobj.as_json.to_json
Severity: Minor
Found in card/spec/card/content_spec.rb and 1 other location - About 30 mins to fix
card/spec/card/content_spec.rb on lines 289..295

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 32.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Start context description with 'when', 'with', or 'without'.
Open

  context "instance" do
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Start context description with 'when', 'with', or 'without'.
Open

  context "class" do
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

    let(:cobj)          { described_class.new example[:content], @card }
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

        cobj.process_chunks(&@render_block)
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

        card2 = Card[@card.id]
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

        cobj.process_chunks(&@render_block)
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

        expect(cobj.inject(classes, &@check_proc)).to eq(true)
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Do not use expect in before hook
Open

          expect(wrong_class).to be_falsey
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

Use let instead of an instance variable.
Open

    let(:example)       { EXAMPLES[@example] }
Severity: Minor
Found in card/spec/card/content_spec.rb by rubocop

There are no issues that match your filters.

Category
Status