summaryrefslogtreecommitdiff
path: root/billing/test/functional/customers_controller_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-08-09 10:37:09 +0200
committerAzul <azul@leap.se>2013-08-09 10:37:09 +0200
commita6c564dd4e7c604eae062779c45a1303b67cfbf2 (patch)
tree2db003addb78ee20ea2fd65f3c6372cd52ace2bb /billing/test/functional/customers_controller_test.rb
parent8d9d7b369d99b40d709ac49b124f8c3f67579202 (diff)
fix billing tests to use user id with customer resources
I think this is very confusing and should be changed to: resource :users do |user| user.resource :customer end
Diffstat (limited to 'billing/test/functional/customers_controller_test.rb')
-rw-r--r--billing/test/functional/customers_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/billing/test/functional/customers_controller_test.rb b/billing/test/functional/customers_controller_test.rb
index 2a431da..02b3424 100644
--- a/billing/test/functional/customers_controller_test.rb
+++ b/billing/test/functional/customers_controller_test.rb
@@ -45,7 +45,7 @@ class CustomersControllerTest < ActionController::TestCase
login @other_user
get :new
assert_response :redirect
- assert_equal edit_customer_url(@customer), response.header['Location'] #todo should pass user not customer
+ assert_equal edit_customer_url(@customer.user), response.header['Location'] #todo should pass user not customer
end