blob: 902c981fc05e9ec39a37aee55237200346da337b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require 'test_helper'
class AdminTest < BrowserIntegrationTest
test "clear blocked handle" do
id = FactoryGirl.create :identity
submit_signup(id.login)
assert page.has_content?('has already been taken')
login
with_config admins: [@user.login] do
visit '/'
click_on "Usernames"
fill_in 'query', with: id.login[0]
click_on "Search"
within "##{dom_id(id)}" do
assert page.has_content? id.login
click_on "Destroy"
end
fill_in 'query', with: id.login[0]
click_on "Search"
assert page.has_no_content? id.login
click_on 'Log Out'
end
submit_signup(id.login)
assert page.has_content?("Welcome #{id.login}")
click_on 'Log Out'
end
end
|