summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-09-28 09:08:23 -0600
committermo khan <mo@mokhan.ca>2013-09-28 09:08:23 -0600
commit156c851ccf35a864ab2c18ef85d5ac38d7e9bc39 (patch)
tree4ebbbf14b6ca651788987556623d9c9f37864a3c
parent882f7704986ba01eb825dd5e0ce3e89e87b97e2d (diff)
move homework to readme.
-rw-r--r--readme.md9
-rw-r--r--spec/lesson_three/movie_library_spec.rb7
2 files changed, 10 insertions, 6 deletions
diff --git a/readme.md b/readme.md
index 87cf065..b29f727 100644
--- a/readme.md
+++ b/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.
+
diff --git a/spec/lesson_three/movie_library_spec.rb b/spec/lesson_three/movie_library_spec.rb
index 50ec95d..5512c7a 100644
--- a/spec/lesson_three/movie_library_spec.rb
+++ b/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