education/classroom

View on GitHub
app/models/null_github_user.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class NullGitHubUser < NullGitHubResource
  def avatar_url
    "https://avatars.githubusercontent.com/u/10137?v=3"
  end

  def html_url
    "https://github.com/ghost"
  end

  def login
    "ghost"
  end

  def name
    "Deleted user"
  end
end