diff --git a/.automation/test/arm/arm_good_1.json b/.automation/test/arm/arm_good_1.json index df09afb7..635144fa 100644 --- a/.automation/test/arm/arm_good_1.json +++ b/.automation/test/arm/arm_good_1.json @@ -50,4 +50,4 @@ "value": "[reference(resourceId('Microsoft.Network/virtualNetworks',variables('Network.Name')), '2019-12-01', 'Full')]" } } -} \ No newline at end of file +} diff --git a/.automation/test/clojure/clojure_good_1.clj b/.automation/test/clojure/clojure_good_1.clj index 391f4688..f10b9497 100644 --- a/.automation/test/clojure/clojure_good_1.clj +++ b/.automation/test/clojure/clojure_good_1.clj @@ -1,6 +1,6 @@ (ns foo (:require - [clojure.string :as str])) + [clojure.string :as str])) (butlast [1 2 3]) @@ -11,8 +11,8 @@ (y))) (letfn - [(f [g] (h g)) - (h [i] (f i))]) + [(f [g] (h g)) + (h [i] (f i))]) (defn foo [] 1) (inc (foo)) @@ -31,4 +31,4 @@ (ns bar-test (:require [clojure.test :as t])) (t/deftest my-tests - (t/is (odd? (inc 1)))) \ No newline at end of file + (t/is (odd? (inc 1)))) diff --git a/.automation/test/cloudformation/cloudformation_good_1.json b/.automation/test/cloudformation/cloudformation_good_1.json index dc944bca..d3ff11e2 100644 --- a/.automation/test/cloudformation/cloudformation_good_1.json +++ b/.automation/test/cloudformation/cloudformation_good_1.json @@ -1,35 +1,35 @@ { - "AWSTemplateFormatVersion": "2010-09-09", - "Description": "A sample template", - "Resources": { - "DNS": { - "Type": "AWS::Route53::HostedZone", - "Properties": { - "HostedZoneConfig": { - "Comment": "Myhostedzoneforexample.com" - }, - "Name": "example.com", - "VPCs": [ - { - "VPCId": "vpc-abcd1234", - "VPCRegion": "ap-northeast-1" - }, - { - "VPCId": "vpc-efgh5678", - "VPCRegion": "us-west-2" - } - ], - "HostedZoneTags": [ - { - "Key": "SampleKey1", - "Value": "SampleValue1" - }, - { - "Key": "SampleKey2", - "Value": "SampleValue2" - } - ] - } - } - } + "AWSTemplateFormatVersion": "2010-09-09", + "Description": "A sample template", + "Resources": { + "DNS": { + "Type": "AWS::Route53::HostedZone", + "Properties": { + "HostedZoneConfig": { + "Comment": "Myhostedzoneforexample.com" + }, + "Name": "example.com", + "VPCs": [ + { + "VPCId": "vpc-abcd1234", + "VPCRegion": "ap-northeast-1" + }, + { + "VPCId": "vpc-efgh5678", + "VPCRegion": "us-west-2" + } + ], + "HostedZoneTags": [ + { + "Key": "SampleKey1", + "Value": "SampleValue1" + }, + { + "Key": "SampleKey2", + "Value": "SampleValue2" + } + ] + } + } + } } diff --git a/.automation/test/cloudformation/cloudformation_good_3.json b/.automation/test/cloudformation/cloudformation_good_3.json index f8602d7a..e38194ce 100644 --- a/.automation/test/cloudformation/cloudformation_good_3.json +++ b/.automation/test/cloudformation/cloudformation_good_3.json @@ -1,16 +1,16 @@ { - "Resources" : { - "myDNSRecord" : { - "Type" : "AWS::Route53::RecordSet", - "Properties" : { - "HostedZoneId" : "Z8VLZEXAMPLE", - "Name" : "test.example.com", - "ResourceRecords" : [ - "192.0.2.99" - ], - "TTL" : 300, - "Type" : "A" - } - } - } + "Resources": { + "myDNSRecord": { + "Type": "AWS::Route53::RecordSet", + "Properties": { + "HostedZoneId": "Z8VLZEXAMPLE", + "Name": "test.example.com", + "ResourceRecords": [ + "192.0.2.99" + ], + "TTL": 300, + "Type": "A" + } + } + } } diff --git a/.automation/test/coffeescript/coffeescript_good_1.coffee b/.automation/test/coffeescript/coffeescript_good_1.coffee index 064f850e..388f28d7 100644 --- a/.automation/test/coffeescript/coffeescript_good_1.coffee +++ b/.automation/test/coffeescript/coffeescript_good_1.coffee @@ -62,8 +62,8 @@ module.exports = (robot) -> # Drop the hammer # ################### robot.respond /drop the hammer/i, (msg) -> - msg.send "Commencing the hammer dropping..." - msg.send msg.random dropHammer + msg.send "Commencing the hammer dropping..." + msg.send msg.random dropHammer ############### # Vape Nation # diff --git a/.automation/test/go/golang_good_01.go b/.automation/test/go/golang_good_01.go index c0481191..87595e3c 100644 --- a/.automation/test/go/golang_good_01.go +++ b/.automation/test/go/golang_good_01.go @@ -3,5 +3,5 @@ package main import "fmt" func main() { - fmt.Println("hello world") + fmt.Println("hello world") } diff --git a/.automation/test/groovy/README.md b/.automation/test/groovy/README.md index b08a3b4f..8dc5badf 100644 --- a/.automation/test/groovy/README.md +++ b/.automation/test/groovy/README.md @@ -1,5 +1,5 @@ # Groovy Test Cases -This folder holds the test cases for **Groovy**. +This folder holds the test cases for **Groovy**. ## Additional Docs No Additional information is needed for this test case. diff --git a/.automation/test/groovy/groovy_good_01.groovy b/.automation/test/groovy/groovy_good_01.groovy index d0375dab..90941461 100644 --- a/.automation/test/groovy/groovy_good_01.groovy +++ b/.automation/test/groovy/groovy_good_01.groovy @@ -1,6 +1,6 @@ class Example { - static void main(String[] args) { - File file = new File("E:/Example.txt") - println "The file ${file.absolutePath} has ${file.length()} bytes" - } + static void main(String[] args) { + File file = new File("E:/Example.txt") + println "The file ${file.absolutePath} has ${file.length()} bytes" + } } diff --git a/.automation/test/html/html_good_01.html b/.automation/test/html/html_good_01.html index 1b10ca4e..d3a039bf 100644 --- a/.automation/test/html/html_good_01.html +++ b/.automation/test/html/html_good_01.html @@ -1,10 +1,13 @@ -
- -