nbudin-google4r-checkout 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
 - data/CHANGES +83 -0
 - data/LICENSE +22 -0
 - data/README +58 -0
 - data/Rakefile +80 -0
 - data/VERSION +1 -0
 - data/lib/google4r/checkout/commands.rb +515 -0
 - data/lib/google4r/checkout/frontend.rb +204 -0
 - data/lib/google4r/checkout/merchant_calculation.rb +321 -0
 - data/lib/google4r/checkout/notifications.rb +708 -0
 - data/lib/google4r/checkout/shared.rb +1249 -0
 - data/lib/google4r/checkout/utils.rb +94 -0
 - data/lib/google4r/checkout/xml_generation.rb +920 -0
 - data/lib/google4r/checkout.rb +34 -0
 - data/test/frontend_configuration.rb +13 -0
 - data/test/integration/checkout_command_test.rb +246 -0
 - data/test/test_helper.rb +115 -0
 - data/test/unit/add_merchant_order_number_command_test.rb +70 -0
 - data/test/unit/add_tracking_data_command_test.rb +75 -0
 - data/test/unit/address_test.rb +131 -0
 - data/test/unit/anonymous_address_test.rb +75 -0
 - data/test/unit/archive_order_command_test.rb +66 -0
 - data/test/unit/area_test.rb +44 -0
 - data/test/unit/authorization_amount_notification_test.rb +69 -0
 - data/test/unit/authorize_order_command_test.rb +66 -0
 - data/test/unit/backorder_items_command_test.rb +83 -0
 - data/test/unit/callback_handler_test.rb +83 -0
 - data/test/unit/cancel_items_command_test.rb +89 -0
 - data/test/unit/cancel_order_command_test.rb +83 -0
 - data/test/unit/carrier_calculated_shipping_test.rb +57 -0
 - data/test/unit/charge_amount_notification_test.rb +64 -0
 - data/test/unit/charge_order_command_test.rb +77 -0
 - data/test/unit/chargeback_amount_notification_test.rb +65 -0
 - data/test/unit/checkout_command_test.rb +125 -0
 - data/test/unit/checkout_command_xml_generator_test.rb +218 -0
 - data/test/unit/command_test.rb +116 -0
 - data/test/unit/deliver_order_command_test.rb +70 -0
 - data/test/unit/delivery_method_test.rb +42 -0
 - data/test/unit/digital_content_test.rb +105 -0
 - data/test/unit/flat_rate_shipping_test.rb +132 -0
 - data/test/unit/frontend_test.rb +136 -0
 - data/test/unit/item_info_test.rb +69 -0
 - data/test/unit/item_test.rb +171 -0
 - data/test/unit/marketing_preferences_test.rb +65 -0
 - data/test/unit/merchant_calculated_shipping_test.rb +172 -0
 - data/test/unit/merchant_calculation_callback_test.rb +137 -0
 - data/test/unit/merchant_calculation_result_test.rb +78 -0
 - data/test/unit/merchant_calculation_results_test.rb +178 -0
 - data/test/unit/merchant_code_result_test.rb +51 -0
 - data/test/unit/merchant_code_test.rb +122 -0
 - data/test/unit/new_order_notification_test.rb +115 -0
 - data/test/unit/notification_acknowledgement_test.rb +67 -0
 - data/test/unit/notification_handler_test.rb +113 -0
 - data/test/unit/order_adjustment_test.rb +119 -0
 - data/test/unit/order_state_change_notification_test.rb +158 -0
 - data/test/unit/pickup_shipping_test.rb +70 -0
 - data/test/unit/postal_area_test.rb +71 -0
 - data/test/unit/private_data_parser_test.rb +68 -0
 - data/test/unit/refund_amount_notification_test.rb +65 -0
 - data/test/unit/refund_order_command_test.rb +86 -0
 - data/test/unit/reset_items_shipping_information_command_test.rb +83 -0
 - data/test/unit/return_items_command_test.rb +83 -0
 - data/test/unit/risk_information_notification_test.rb +98 -0
 - data/test/unit/send_buyer_message_command_test.rb +73 -0
 - data/test/unit/ship_items_command_test.rb +101 -0
 - data/test/unit/shipping_adjustment_test.rb +100 -0
 - data/test/unit/shopping_cart_test.rb +146 -0
 - data/test/unit/tax_rule_test.rb +70 -0
 - data/test/unit/tax_table_test.rb +82 -0
 - data/test/unit/tracking_data_test.rb +54 -0
 - data/test/unit/unarchive_order_command_test.rb +66 -0
 - data/test/unit/us_country_area_test.rb +76 -0
 - data/test/unit/us_state_area_test.rb +70 -0
 - data/test/unit/us_zip_area_test.rb +66 -0
 - data/test/unit/world_area_test.rb +48 -0
 - data/test/xml/apiv2.xsd +997 -0
 - data/test/xml/test_check_persisting_works_expected.xml +213 -0
 - data/var/cacert.pem +7815 -0
 - metadata +200 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,200 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: nbudin-google4r-checkout
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.6
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Tony Chan
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2009-08-26 00:00:00 -07:00
         
     | 
| 
      
 13 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 14 
     | 
    
         
            +
            dependencies: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 16 
     | 
    
         
            +
              name: money
         
     | 
| 
      
 17 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 18 
     | 
    
         
            +
              version_requirement: 
         
     | 
| 
      
 19 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 20 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 21 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 23 
     | 
    
         
            +
                    version: 1.7.1
         
     | 
| 
      
 24 
     | 
    
         
            +
                version: 
         
     | 
| 
      
 25 
     | 
    
         
            +
            description: Ruby library to access the Google Checkout service and implement notification handlers.
         
     | 
| 
      
 26 
     | 
    
         
            +
            email: 
         
     | 
| 
      
 27 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            extra_rdoc_files: 
         
     | 
| 
      
 32 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 33 
     | 
    
         
            +
            - README
         
     | 
| 
      
 34 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 35 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 36 
     | 
    
         
            +
            - CHANGES
         
     | 
| 
      
 37 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 38 
     | 
    
         
            +
            - README
         
     | 
| 
      
 39 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 40 
     | 
    
         
            +
            - VERSION
         
     | 
| 
      
 41 
     | 
    
         
            +
            - lib/google4r/checkout.rb
         
     | 
| 
      
 42 
     | 
    
         
            +
            - lib/google4r/checkout/commands.rb
         
     | 
| 
      
 43 
     | 
    
         
            +
            - lib/google4r/checkout/frontend.rb
         
     | 
| 
      
 44 
     | 
    
         
            +
            - lib/google4r/checkout/merchant_calculation.rb
         
     | 
| 
      
 45 
     | 
    
         
            +
            - lib/google4r/checkout/notifications.rb
         
     | 
| 
      
 46 
     | 
    
         
            +
            - lib/google4r/checkout/shared.rb
         
     | 
| 
      
 47 
     | 
    
         
            +
            - lib/google4r/checkout/utils.rb
         
     | 
| 
      
 48 
     | 
    
         
            +
            - lib/google4r/checkout/xml_generation.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - test/frontend_configuration.rb
         
     | 
| 
      
 50 
     | 
    
         
            +
            - test/integration/checkout_command_test.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
            - test/test_helper.rb
         
     | 
| 
      
 52 
     | 
    
         
            +
            - test/unit/add_merchant_order_number_command_test.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - test/unit/add_tracking_data_command_test.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
            - test/unit/address_test.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
            - test/unit/anonymous_address_test.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
            - test/unit/archive_order_command_test.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
            - test/unit/area_test.rb
         
     | 
| 
      
 58 
     | 
    
         
            +
            - test/unit/authorization_amount_notification_test.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
            - test/unit/authorize_order_command_test.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
            - test/unit/backorder_items_command_test.rb
         
     | 
| 
      
 61 
     | 
    
         
            +
            - test/unit/callback_handler_test.rb
         
     | 
| 
      
 62 
     | 
    
         
            +
            - test/unit/cancel_items_command_test.rb
         
     | 
| 
      
 63 
     | 
    
         
            +
            - test/unit/cancel_order_command_test.rb
         
     | 
| 
      
 64 
     | 
    
         
            +
            - test/unit/carrier_calculated_shipping_test.rb
         
     | 
| 
      
 65 
     | 
    
         
            +
            - test/unit/charge_amount_notification_test.rb
         
     | 
| 
      
 66 
     | 
    
         
            +
            - test/unit/charge_order_command_test.rb
         
     | 
| 
      
 67 
     | 
    
         
            +
            - test/unit/chargeback_amount_notification_test.rb
         
     | 
| 
      
 68 
     | 
    
         
            +
            - test/unit/checkout_command_test.rb
         
     | 
| 
      
 69 
     | 
    
         
            +
            - test/unit/checkout_command_xml_generator_test.rb
         
     | 
| 
      
 70 
     | 
    
         
            +
            - test/unit/command_test.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
            - test/unit/deliver_order_command_test.rb
         
     | 
| 
      
 72 
     | 
    
         
            +
            - test/unit/delivery_method_test.rb
         
     | 
| 
      
 73 
     | 
    
         
            +
            - test/unit/digital_content_test.rb
         
     | 
| 
      
 74 
     | 
    
         
            +
            - test/unit/flat_rate_shipping_test.rb
         
     | 
| 
      
 75 
     | 
    
         
            +
            - test/unit/frontend_test.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - test/unit/item_info_test.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - test/unit/item_test.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - test/unit/marketing_preferences_test.rb
         
     | 
| 
      
 79 
     | 
    
         
            +
            - test/unit/merchant_calculated_shipping_test.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - test/unit/merchant_calculation_callback_test.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - test/unit/merchant_calculation_result_test.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - test/unit/merchant_calculation_results_test.rb
         
     | 
| 
      
 83 
     | 
    
         
            +
            - test/unit/merchant_code_result_test.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - test/unit/merchant_code_test.rb
         
     | 
| 
      
 85 
     | 
    
         
            +
            - test/unit/new_order_notification_test.rb
         
     | 
| 
      
 86 
     | 
    
         
            +
            - test/unit/notification_acknowledgement_test.rb
         
     | 
| 
      
 87 
     | 
    
         
            +
            - test/unit/notification_handler_test.rb
         
     | 
| 
      
 88 
     | 
    
         
            +
            - test/unit/order_adjustment_test.rb
         
     | 
| 
      
 89 
     | 
    
         
            +
            - test/unit/order_state_change_notification_test.rb
         
     | 
| 
      
 90 
     | 
    
         
            +
            - test/unit/pickup_shipping_test.rb
         
     | 
| 
      
 91 
     | 
    
         
            +
            - test/unit/postal_area_test.rb
         
     | 
| 
      
 92 
     | 
    
         
            +
            - test/unit/private_data_parser_test.rb
         
     | 
| 
      
 93 
     | 
    
         
            +
            - test/unit/refund_amount_notification_test.rb
         
     | 
| 
      
 94 
     | 
    
         
            +
            - test/unit/refund_order_command_test.rb
         
     | 
| 
      
 95 
     | 
    
         
            +
            - test/unit/reset_items_shipping_information_command_test.rb
         
     | 
| 
      
 96 
     | 
    
         
            +
            - test/unit/return_items_command_test.rb
         
     | 
| 
      
 97 
     | 
    
         
            +
            - test/unit/risk_information_notification_test.rb
         
     | 
| 
      
 98 
     | 
    
         
            +
            - test/unit/send_buyer_message_command_test.rb
         
     | 
| 
      
 99 
     | 
    
         
            +
            - test/unit/ship_items_command_test.rb
         
     | 
| 
      
 100 
     | 
    
         
            +
            - test/unit/shipping_adjustment_test.rb
         
     | 
| 
      
 101 
     | 
    
         
            +
            - test/unit/shopping_cart_test.rb
         
     | 
| 
      
 102 
     | 
    
         
            +
            - test/unit/tax_rule_test.rb
         
     | 
| 
      
 103 
     | 
    
         
            +
            - test/unit/tax_table_test.rb
         
     | 
| 
      
 104 
     | 
    
         
            +
            - test/unit/tracking_data_test.rb
         
     | 
| 
      
 105 
     | 
    
         
            +
            - test/unit/unarchive_order_command_test.rb
         
     | 
| 
      
 106 
     | 
    
         
            +
            - test/unit/us_country_area_test.rb
         
     | 
| 
      
 107 
     | 
    
         
            +
            - test/unit/us_state_area_test.rb
         
     | 
| 
      
 108 
     | 
    
         
            +
            - test/unit/us_zip_area_test.rb
         
     | 
| 
      
 109 
     | 
    
         
            +
            - test/unit/world_area_test.rb
         
     | 
| 
      
 110 
     | 
    
         
            +
            - test/xml/apiv2.xsd
         
     | 
| 
      
 111 
     | 
    
         
            +
            - test/xml/test_check_persisting_works_expected.xml
         
     | 
| 
      
 112 
     | 
    
         
            +
            - var/cacert.pem
         
     | 
| 
      
 113 
     | 
    
         
            +
            has_rdoc: false
         
     | 
| 
      
 114 
     | 
    
         
            +
            homepage: 
         
     | 
| 
      
 115 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 116 
     | 
    
         
            +
            rdoc_options: 
         
     | 
| 
      
 117 
     | 
    
         
            +
            - --charset=UTF-8
         
     | 
| 
      
 118 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 119 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 120 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 121 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 122 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 123 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 124 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 125 
     | 
    
         
            +
              version: 
         
     | 
| 
      
 126 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 127 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 128 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 129 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 130 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 131 
     | 
    
         
            +
              version: 
         
     | 
| 
      
 132 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 135 
     | 
    
         
            +
            rubygems_version: 1.2.0
         
     | 
| 
      
 136 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 137 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 138 
     | 
    
         
            +
            summary: Ruby library to access the Google Checkout service and implement notification handlers.
         
     | 
| 
      
 139 
     | 
    
         
            +
            test_files: 
         
     | 
| 
      
 140 
     | 
    
         
            +
            - test/integration/checkout_command_test.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - test/unit/order_adjustment_test.rb
         
     | 
| 
      
 142 
     | 
    
         
            +
            - test/unit/pickup_shipping_test.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - test/unit/merchant_code_test.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - test/unit/chargeback_amount_notification_test.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - test/unit/authorize_order_command_test.rb
         
     | 
| 
      
 146 
     | 
    
         
            +
            - test/unit/merchant_calculation_results_test.rb
         
     | 
| 
      
 147 
     | 
    
         
            +
            - test/unit/risk_information_notification_test.rb
         
     | 
| 
      
 148 
     | 
    
         
            +
            - test/unit/ship_items_command_test.rb
         
     | 
| 
      
 149 
     | 
    
         
            +
            - test/unit/tax_table_test.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - test/unit/backorder_items_command_test.rb
         
     | 
| 
      
 151 
     | 
    
         
            +
            - test/unit/flat_rate_shipping_test.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - test/unit/refund_order_command_test.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - test/unit/merchant_code_result_test.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - test/unit/callback_handler_test.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - test/unit/charge_order_command_test.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - test/unit/charge_amount_notification_test.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - test/unit/carrier_calculated_shipping_test.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - test/unit/return_items_command_test.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - test/unit/add_merchant_order_number_command_test.rb
         
     | 
| 
      
 160 
     | 
    
         
            +
            - test/unit/authorization_amount_notification_test.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - test/unit/frontend_test.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - test/unit/add_tracking_data_command_test.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - test/unit/address_test.rb
         
     | 
| 
      
 164 
     | 
    
         
            +
            - test/unit/item_info_test.rb
         
     | 
| 
      
 165 
     | 
    
         
            +
            - test/unit/order_state_change_notification_test.rb
         
     | 
| 
      
 166 
     | 
    
         
            +
            - test/unit/us_state_area_test.rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            - test/unit/notification_handler_test.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            - test/unit/us_country_area_test.rb
         
     | 
| 
      
 169 
     | 
    
         
            +
            - test/unit/shopping_cart_test.rb
         
     | 
| 
      
 170 
     | 
    
         
            +
            - test/unit/reset_items_shipping_information_command_test.rb
         
     | 
| 
      
 171 
     | 
    
         
            +
            - test/unit/send_buyer_message_command_test.rb
         
     | 
| 
      
 172 
     | 
    
         
            +
            - test/unit/item_test.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - test/unit/deliver_order_command_test.rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            - test/unit/cancel_order_command_test.rb
         
     | 
| 
      
 175 
     | 
    
         
            +
            - test/unit/archive_order_command_test.rb
         
     | 
| 
      
 176 
     | 
    
         
            +
            - test/unit/world_area_test.rb
         
     | 
| 
      
 177 
     | 
    
         
            +
            - test/unit/new_order_notification_test.rb
         
     | 
| 
      
 178 
     | 
    
         
            +
            - test/unit/private_data_parser_test.rb
         
     | 
| 
      
 179 
     | 
    
         
            +
            - test/unit/merchant_calculated_shipping_test.rb
         
     | 
| 
      
 180 
     | 
    
         
            +
            - test/unit/cancel_items_command_test.rb
         
     | 
| 
      
 181 
     | 
    
         
            +
            - test/unit/checkout_command_test.rb
         
     | 
| 
      
 182 
     | 
    
         
            +
            - test/unit/area_test.rb
         
     | 
| 
      
 183 
     | 
    
         
            +
            - test/unit/merchant_calculation_result_test.rb
         
     | 
| 
      
 184 
     | 
    
         
            +
            - test/unit/marketing_preferences_test.rb
         
     | 
| 
      
 185 
     | 
    
         
            +
            - test/unit/notification_acknowledgement_test.rb
         
     | 
| 
      
 186 
     | 
    
         
            +
            - test/unit/refund_amount_notification_test.rb
         
     | 
| 
      
 187 
     | 
    
         
            +
            - test/unit/tax_rule_test.rb
         
     | 
| 
      
 188 
     | 
    
         
            +
            - test/unit/unarchive_order_command_test.rb
         
     | 
| 
      
 189 
     | 
    
         
            +
            - test/unit/delivery_method_test.rb
         
     | 
| 
      
 190 
     | 
    
         
            +
            - test/unit/checkout_command_xml_generator_test.rb
         
     | 
| 
      
 191 
     | 
    
         
            +
            - test/unit/shipping_adjustment_test.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - test/unit/tracking_data_test.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - test/unit/postal_area_test.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - test/unit/anonymous_address_test.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - test/unit/us_zip_area_test.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - test/unit/digital_content_test.rb
         
     | 
| 
      
 197 
     | 
    
         
            +
            - test/unit/command_test.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - test/unit/merchant_calculation_callback_test.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - test/frontend_configuration.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - test/test_helper.rb
         
     |