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
| HOMEBREW_VERSION: 0.9.2 | |
| HEAD: 709ab17bccb3e4887249d3f9c3da7b6178a4e1a3 | |
| HOMEBREW_PREFIX: /usr/local | |
| HOMEBREW_CELLAR: /usr/local/Cellar | |
| CPU: quad-core 64-bit sandybridge | |
| OS X: 10.8-x86_64 | |
| Xcode: 4.4.1 => /Volumes/Xcode/Xcode.app/Contents/Developer | |
| CLT: 4.4.0.0.1.1249367152 | |
| GCC-4.0: N/A | |
| GCC-4.2: N/A |
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
| HOMEBREW_VERSION: 0.9.2 | |
| HEAD: a831e65e37ed1a8e039d2c0e73845fbee9e17808 | |
| HOMEBREW_PREFIX: /usr/local | |
| HOMEBREW_CELLAR: /usr/local/Cellar | |
| CPU: quad-core 64-bit sandybridge | |
| OS X: 10.8-x86_64 | |
| Xcode: 4.4 (guessed) | |
| CLT: 4.4.0.0.1.1249367152 | |
| GCC-4.0: N/A | |
| GCC-4.2: N/A |
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
| Failures: | |
| 1) Controlpanel::AccountsController Visit dashboard without logging in should redirect to login page | |
| Failure/Error: get :index | |
| ActionController::RoutingError: | |
| No route matches {:controller=>"controlpanel/accounts"} | |
| # ./spec/controllers/controlpanel/accounts_controller_spec.rb:14:in `block (4 levels) in <top (required)>' | |
| 2) Controlpanel::AccountsController Visit dashboard after logging in should render the index page | |
| Failure/Error: get :index |
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.expand_path(File.dirname(__FILE__) + '/../spec_helper') | |
| describe Foo::BarsController do | |
| before(:each) do | |
| @request.host = 'foo.test.host' | |
| end | |
| it "should route" do | |
| params_from(:get, "/bars/1").should == {:controller => "foo/bars", :action => "show", :id => '1'} |