Commit 8e782470

mo khan <mo@mokhan.ca>
2013-05-10 22:53:22
add home controller spec
1 parent b92cd7f
Changed files (1)
spec
spec/controllers/home_controller_spec.rb
@@ -0,0 +1,13 @@
+require "spec_helper"
+
+describe HomeController do
+  it "should render the about us page" do
+    get "about_us"
+    response.should be_success
+  end
+
+  it "should render the why cakeside page" do
+    get "why_cakeside"
+    response.should be_success
+  end
+end