spec/aws-record/record/table_config_spec.rb [264:300]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            cfg = TableConfig.define do |t|
              t.model_class(TestModelWithGsi)
              t.read_capacity_units(2)
              t.write_capacity_units(2)
              t.global_secondary_index(:gsi) do |i|
                i.read_capacity_units(1)
                i.write_capacity_units(1)
              end
              t.client_options(stub_responses: true)
            end
            stub_client = configure_test_client(cfg.client)
            stub_client.stub_responses(
              :describe_table,
              {
                table: {
                  attribute_definitions: [
                    {
                      attribute_type: 'S',
                      attribute_name: 'hk'
                    },
                    {
                      attribute_name: 'rk',
                      attribute_type: 'S'
                    }
                  ],
                  table_name: 'TestModelWithGsi',
                  key_schema: [
                    {
                      attribute_name: 'hk',
                      key_type: 'HASH'
                    },
                    {
                      attribute_name: 'rk',
                      key_type: 'RANGE'
                    }
                  ],
                  provisioned_throughput: {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/aws-record/record/table_config_spec.rb [352:388]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            cfg = TableConfig.define do |t|
              t.model_class(TestModelWithGsi)
              t.read_capacity_units(2)
              t.write_capacity_units(2)
              t.global_secondary_index(:gsi) do |i|
                i.read_capacity_units(1)
                i.write_capacity_units(1)
              end
              t.client_options(stub_responses: true)
            end
            stub_client = configure_test_client(cfg.client)
            stub_client.stub_responses(
              :describe_table,
              {
                table: {
                  attribute_definitions: [
                    {
                      attribute_type: 'S',
                      attribute_name: 'hk'
                    },
                    {
                      attribute_name: 'rk',
                      attribute_type: 'S'
                    }
                  ],
                  table_name: 'TestModelWithGsi',
                  key_schema: [
                    {
                      attribute_name: 'hk',
                      key_type: 'HASH'
                    },
                    {
                      attribute_name: 'rk',
                      key_type: 'RANGE'
                    }
                  ],
                  provisioned_throughput: {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



