Created
February 11, 2009 23:25
-
-
Save ropiku/62363 to your computer and use it in GitHub Desktop.
This file contains 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__) + '/../test_helper' | |
class UsersControllerTest < ActionController::TestCase | |
include Clearance::Test::Functional::UsersControllerTest | |
public_context do | |
context "When getting new User view" do | |
setup { get :new } | |
should "display username field" do | |
assert_select "input[type=text][name=?]", "user[username]", true, "There must be a username field" | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment