-
-
Save hassox/141843 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # spec helper | |
| Spec::Runner.configure do |config| | |
| # snip | |
| config.include(Rack::Test::Methods) | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require File.dirname(__FILE__) + '/../spec_helper' | |
| def app | |
| ActionController::Dispatcher.new | |
| end | |
| describe "the homepage" do | |
| it "shouldn't crap out" do | |
| get '/' | |
| last_response.should be_ok | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment