require 'awspec'

state_lock_table = attribute "state_lock_table", {}

control "state_lock_table" do
  describe "the DynamoDB table" do
    let :the_state_lock_table do
      dynamodb_table state_lock_table
    end
    describe state_lock_table do
      subject do the_state_lock_table end
        it { should exist }
      end
    end
end
