This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@After | |
public void after() { | |
System.clearProperty("AWS_ACCESS_KEY_ID"); | |
System.clearProperty("AWS_SECRET_KEY"); | |
} | |
@Test | |
public void should_get_aws_credentials_in_local_environment() throws Exception { | |
// setup test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.data | |
hello: | |
.string "Hello world!\n" | |
.text | |
.globl _start | |
_start: | |
movl $4, %eax # write(1, hello, strlen(hello)) | |
movl $1, %ebx | |
movl $hello, %ecx |