diff options
author | Azul <azul@leap.se> | 2013-08-09 10:37:09 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-08-09 10:37:09 +0200 |
commit | a6c564dd4e7c604eae062779c45a1303b67cfbf2 (patch) | |
tree | 2db003addb78ee20ea2fd65f3c6372cd52ace2bb /billing/test/functional/customer_controller_test.rb | |
parent | 8d9d7b369d99b40d709ac49b124f8c3f67579202 (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/customer_controller_test.rb')
-rw-r--r-- | billing/test/functional/customer_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/billing/test/functional/customer_controller_test.rb b/billing/test/functional/customer_controller_test.rb index 9bf2b5e..d7f221e 100644 --- a/billing/test/functional/customer_controller_test.rb +++ b/billing/test/functional/customer_controller_test.rb @@ -23,7 +23,7 @@ class CustomerControllerTest < ActionController::TestCase test "edit uses params[:id]" do customer = FactoryGirl.create :customer_with_payment_info login customer.user - get :edit, id: customer.id + get :edit, id: customer.user.id assert_response :success assert assigns(:tr_data) |