Commit 8e782470
Changed files (1)
spec
controllers
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