Commit 156c851
Changed files (2)
spec
lesson_three
spec/lesson_three/movie_library_spec.rb
@@ -1,10 +1,5 @@
require "spec_helper"
-#homework
-#move MovieLibrary and Movie to the lib folder (in separate files)
-#separate the include? method into its own module (and whatever else we can)
-#extend one method at run time and another at instantiation time
-
class Movie
def initialize(name)
@name = name
@@ -58,4 +53,4 @@ describe MovieLibrary do
-end
\ No newline at end of file
+end
readme.md
@@ -44,3 +44,12 @@
* dsl
* range
* lazy (lazy object)
+
+
+# homework
+
+* move MovieLibrary and Movie to the lib folder (in separate files)
+* separate the include? method into its own module (and whatever else we can)
+* extend one method at run time and another at instantiation time
+* fix the one broken spec.
+