Created
June 8, 2011 20:42
-
-
Save SpencerCooley/1015354 to your computer and use it in GitHub Desktop.
test do test do
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 'test_helper' | |
class StoreControllerTest < ActionController::TestCase | |
test "should get index" do | |
get :index | |
assert_response :success | |
assert_select '#columns #side a', :minimum=> 4 | |
assert_select '#main .entry', 3 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment