summaryrefslogtreecommitdiff
path: root/billing/test/broken/admin_customer_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-04-11 10:03:19 +0200
committerAzul <azul@leap.se>2014-04-11 10:07:23 +0200
commit636692f9921bd695d726695d2d46c91f5a6e56f3 (patch)
treea7cc0b89007bd273ae7719f31c16e052a141fec7 /billing/test/broken/admin_customer_test.rb
parent32136605ddd405a0bf47f3b795b22fd4b49465b5 (diff)
move engines into engines directory
Also renamed help to support so it's harder to confuse it with documentation
Diffstat (limited to 'billing/test/broken/admin_customer_test.rb')
-rw-r--r--billing/test/broken/admin_customer_test.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/billing/test/broken/admin_customer_test.rb b/billing/test/broken/admin_customer_test.rb
deleted file mode 100644
index df92a0d..0000000
--- a/billing/test/broken/admin_customer_test.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'test_helper'
-require 'fake_braintree'
-
-class AdminCustomerTest < BraintreeIntegrationTest
-
- setup do
- @admin = User.find_by_login('admin') || FactoryGirl.create(:user, login: 'admin')
- @user = FactoryGirl.create(:user)
- end
-
- teardown do
- @user.destroy if @user
- @admin.destroy if @admin
- 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