blob: 58a75573ae4fb1f010eb6a5772f199786f28fb5a (
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
29
30
31
32
33
34
35
36
|
require 'test_helper'
require 'fake_braintree'
require 'capybara/rails'
class AdminCustomerTest < ActionDispatch::IntegrationTest
include Warden::Test::Helpers
include Capybara::DSL
setup do
Warden.test_mode!
@admin = User.find_by_login('admin') || FactoryGirl.create(:user, login: 'admin')
@user = FactoryGirl.create(:user)
end
teardown do
Warden.test_reset!
@user.destroy
@admin.destroy
end
test "check non customer as admin" do
login_as @admin
visit '/'
click_link 'Users'
click_link @user.login
click_link 'Billing Settings'
assert page.has_content? @user.email_address
assert page.has_content? 'No Saved Customer'
end
test "check customer as admin" do
skip "cannot check customer as admin"
# it would be good to have a test where an admin tries to view the 'Billing Settings' for another user.
# However, partially due to limitations of FakeBraintree, this doesn't seem pursuing at this time.
end
end
|