summaryrefslogtreecommitdiff
path: root/lib/movie.rb
blob: 74aa0fde529c7a47854d6731071ac71737185848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Movie
  def initialize(title:,  studio: Studio::Unknown, year_published: DateTime.now.year)
  end
end

class MovieLibrary
  def add(movie)
  end
end

class Studio
  CastleRock = Object.new
  Disney = Object.new
  MiramaxFilms = Object.new
  Pixar = Object.new
  RegencyEnterprises = Object.new
  Unknown = Object.new
end