static_controller_spec.rb 266 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 # Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved. require 'spec_helper' describe StaticController do describe "GET 'home'" do it "returns http success" do get 'home' response.should be_success end end end