spec/aws-record/record/table_migration_spec.rb [76:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              provisioned_throughput: {
                read_capacity_units: 5,
                write_capacity_units: 2
              }
            }
            migration.client = stub_client
            migration.create!(create_opts)
            expect(api_requests).to eq(
              [
                {
                  table_name: 'TestTable',
                  attribute_definitions: [
                    {
                      attribute_name: 'id',
                      attribute_type: 'N'
                    },
                    {
                      attribute_name: 'datekey',
                      attribute_type: 'S'
                    }
                  ],
                  key_schema: [
                    {
                      attribute_name: 'id',
                      key_type: 'HASH'
                    },
                    {
                      attribute_name: 'datekey',
                      key_type: 'RANGE'
                    }
                  ],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/aws-record/record/table_migration_spec.rb [155:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              provisioned_throughput: {
                read_capacity_units: 5,
                write_capacity_units: 2
              }
            }
            migration.client = stub_client
            migration.create!(create_opts)
            expect(api_requests).to eq(
              [
                {
                  table_name: 'TestTable',
                  attribute_definitions: [
                    {
                      attribute_name: 'id',
                      attribute_type: 'N'
                    },
                    {
                      attribute_name: 'datekey',
                      attribute_type: 'S'
                    }
                  ],
                  key_schema: [
                    {
                      attribute_name: 'id',
                      key_type: 'HASH'
                    },
                    {
                      attribute_name: 'datekey',
                      key_type: 'RANGE'
                    }
                  ],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



