Skip to content

Instantly share code, notes, and snippets.

View rjaduthie's full-sized avatar

Roger J. A. Duthie rjaduthie

  • Cambridge, UK
View GitHub Profile
@rjaduthie
rjaduthie / pom.xml
Created April 21, 2021 16:01
Minimum Example TC Kotlin Reflection Issue
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<name>Test Config DSL Script</name>
<groupId>Test</groupId>
<artifactId>Test_dsl</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>1.4.32</kotlin.version>
@rjaduthie
rjaduthie / test_localstack_s3.py
Created November 12, 2018 13:10
LocalStack S3 unit test for invalid bucket names
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import io
import boto3
import unittest
import warnings
import botocore.exceptions
class TestLocalS3Bucket(unittest.TestCase):