snsavage/retro_casts

View on GitHub
lib/retro_casts/null_website.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RetroCasts
  class NullWebsite
    def empty?
      true
    end

    def collect
      self
    end

    def each_with_index
      RetroCasts.display("No Episodes Found")
    end
  end
end