projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Arrays have a length method, not a count method.
[rails.git]
/
test
/
integration
/
user_creation_test.rb
1
require 'test_helper'
2
3
class UserCreationTest < ActionController::IntegrationTest
4
fixtures :users
5
6
def test_create_user_duplicate
7
get '/user/new'
8
assert_response :success
9
end
10
end