Skip to content

Commit

Permalink
use boto for this, but needs config
Browse files Browse the repository at this point in the history
  • Loading branch information
Rio Goodman committed Dec 27, 2016
1 parent d871118 commit 09b5c5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_kin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import __init__
import boto3
from localstack.constants import ENV_DEV, LAMBDA_TEST_ROLE
from localstack.utils.common import *
from localstack.mock import infra
Expand All @@ -17,7 +18,9 @@ def start_test(env=ENV_DEV):
kinesis = aws_stack.connect_to_service('kinesis', env=env)
stream = aws_stack.create_kinesis_stream(TEST_STREAM_NAME)

stream.put_records(
client = boto3.client('kinesis')

client.put_records(
[{
'StreamName': 'test-stream-1'
}]
Expand Down

0 comments on commit 09b5c5e

Please sign in to comment.