Skip to content

Commit

Permalink
fixed-tests: port united-states to fixed-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JRaspass committed Jun 4, 2024
1 parent 7f2a4c5 commit 6f37718
Show file tree
Hide file tree
Showing 2 changed files with 153 additions and 53 deletions.
152 changes: 152 additions & 0 deletions hole/fixed-tests/united-states.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
< Alabama
> AL

< Alaska
> AK

< Arizona
> AZ

< Arkansas
> AR

< California
> CA

< Colorado
> CO

< Connecticut
> CT

< Delaware
> DE

< District of Columbia
> DC

< Florida
> FL

< Georgia
> GA

< Hawaii
> HI

< Idaho
> ID

< Illinois
> IL

< Indiana
> IN

< Iowa
> IA

< Kansas
> KS

< Kentucky
> KY

< Louisiana
> LA

< Maine
> ME

< Maryland
> MD

< Massachusetts
> MA

< Michigan
> MI

< Minnesota
> MN

< Mississippi
> MS

< Missouri
> MO

< Montana
> MT

< Nebraska
> NE

< Nevada
> NV

< New Hampshire
> NH

< New Jersey
> NJ

< New Mexico
> NM

< New York
> NY

< North Carolina
> NC

< North Dakota
> ND

< Ohio
> OH

< Oklahoma
> OK

< Oregon
> OR

< Pennsylvania
> PA

< Rhode Island
> RI

< South Carolina
> SC

< South Dakota
> SD

< Tennessee
> TN

< Texas
> TX

< Utah
> UT

< Vermont
> VT

< Virginia
> VA

< Washington
> WA

< West Virginia
> WV

< Wisconsin
> WI

< Wyoming
> WY
54 changes: 1 addition & 53 deletions hole/united-states.go
Original file line number Diff line number Diff line change
@@ -1,57 +1,5 @@
package hole

func unitedStates() []Run {
return outputMultirunTests([]test{
{"Alabama", "AL"},
{"Alaska", "AK"},
{"Arizona", "AZ"},
{"Arkansas", "AR"},
{"California", "CA"},
{"Colorado", "CO"},
{"Connecticut", "CT"},
{"Delaware", "DE"},
{"District of Columbia", "DC"},
{"Florida", "FL"},
{"Georgia", "GA"},
{"Hawaii", "HI"},
{"Idaho", "ID"},
{"Illinois", "IL"},
{"Indiana", "IN"},
{"Iowa", "IA"},
{"Kansas", "KS"},
{"Kentucky", "KY"},
{"Louisiana", "LA"},
{"Maine", "ME"},
{"Maryland", "MD"},
{"Massachusetts", "MA"},
{"Michigan", "MI"},
{"Minnesota", "MN"},
{"Mississippi", "MS"},
{"Missouri", "MO"},
{"Montana", "MT"},
{"Nebraska", "NE"},
{"Nevada", "NV"},
{"New Hampshire", "NH"},
{"New Jersey", "NJ"},
{"New Mexico", "NM"},
{"New York", "NY"},
{"North Carolina", "NC"},
{"North Dakota", "ND"},
{"Ohio", "OH"},
{"Oklahoma", "OK"},
{"Oregon", "OR"},
{"Pennsylvania", "PA"},
{"Rhode Island", "RI"},
{"South Carolina", "SC"},
{"South Dakota", "SD"},
{"Tennessee", "TN"},
{"Texas", "TX"},
{"Utah", "UT"},
{"Vermont", "VT"},
{"Virginia", "VA"},
{"Washington", "WA"},
{"West Virginia", "WV"},
{"Wisconsin", "WI"},
{"Wyoming", "WY"},
})
return outputMultirunTests(fixedTests("united-states"))
}

0 comments on commit 6f37718

Please sign in to comment.