expertiza/expertiza

View on GitHub
spec/models/user_spec.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Block has too many lines. [411/25]
Open

describe User do
  let(:user) do
    User.new name: 'abc', fullname: 'abc xyz', email: 'abcxyz@gmail.com', password: '12345678', password_confirmation: '12345678',
             email_on_submission: 1, email_on_review: 1, email_on_review_of_review: 0, copy_of_emails: 1, handle: 'handle'
  end
Severity: Minor
Found in spec/models/user_spec.rb by rubocop

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

File user_spec.rb has 413 lines of code (exceeds 250 allowed). Consider refactoring.
Open

describe User do
  let(:user) do
    User.new name: 'abc', fullname: 'abc xyz', email: 'abcxyz@gmail.com', password: '12345678', password_confirmation: '12345678',
             email_on_submission: 1, email_on_review: 1, email_on_review_of_review: 0, copy_of_emails: 1, handle: 'handle'
  end
Severity: Minor
Found in spec/models/user_spec.rb - About 5 hrs to fix

    Block has too many lines. [30/25]
    Open

      describe '.export' do
        before(:each) do
          allow(User).to receive(:all).and_return([user])
          allow(user).to receive_message_chain(:role, :name).and_return('Student')
          allow(user).to receive_message_chain(:parent, :name).and_return('Instructor')
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

    Block has too many lines. [27/25]
    Open

      describe '#email' do
        it 'returns the email of the user' do
          expect(user.email).to eq('abcxyz@gmail.com')
        end
    
    
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

    Block has too many lines. [27/25]
    Open

      describe '.search_users' do
        let(:role) { Role.new }
    
        before(:each) do
          allow(User).to receive_message_chain(:order, :where).with('(role_id in (?) or id = ?) and name like ?', role.get_available_roles, @user_id, '%name%')
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

    Block has too many lines. [26/25]
    Open

      describe '#get_user_list' do
        before(:each) do
          allow(user).to receive_message_chain('role.super_admin?') { false }
          allow(user).to receive_message_chain('role.instructor?') { false }
          allow(user).to receive_message_chain('role.ta?') { false }
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

    Useless assignment to variable - role.
    Open

          role = Role.new
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks for every useless assignment to local variable in every scope. The basic idea for this cop was from the warning of ruby -cw:

    assigned but unused variable - foo

    Currently this cop has advanced logic that detects unreferenced reassignments and properly handles varied cases such as branch, loop, rescue, ensure, etc.

    Example:

    # bad
    
    def some_method
      some_var = 1
      do_something
    end

    Example:

    # good
    
    def some_method
      some_var = 1
      do_something(some_var)
    end

    Useless assignment to variable - user_id.
    Open

          user_id = double
    Severity: Minor
    Found in spec/models/user_spec.rb by rubocop

    This cop checks for every useless assignment to local variable in every scope. The basic idea for this cop was from the warning of ruby -cw:

    assigned but unused variable - foo

    Currently this cop has advanced logic that detects unreferenced reassignments and properly handles varied cases such as branch, loop, rescue, ensure, etc.

    Example:

    # bad
    
    def some_method
      some_var = 1
      do_something
    end

    Example:

    # good
    
    def some_method
      some_var = 1
      do_something(some_var)
    end

    There are no issues that match your filters.

    Category
    Status