-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Clean up wallbrew config * Cleanup makefile * Bump vulnerable dep * Fix file extension * [Format] Auto-formatting --------- Co-authored-by: nnichols <[email protected]>
- Loading branch information
Showing
26 changed files
with
119 additions
and
29 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{:changelog-filename "CHANGELOG.md" | ||
:changelog-entry-directory ".sealog/changes/" | ||
:changelog-entry-directory ".wallbrew/sealog/changes/" | ||
:version-scheme :semver3 | ||
:pretty-print-edn? true} |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
(ns common-beer-data.hops.aroma-test | ||
(:require [clojure.test :refer [deftest is testing]] | ||
[com.wallbrew.spoon.spec :as spoon.spec] | ||
[common-beer-data.hops.aroma :as aroma] | ||
[common-beer-format.hops :as hops])) | ||
|
||
|
||
(deftest validity-test | ||
(testing "Ensure static hop definitions are valid" | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/ahtanum)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/amarillo)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/cascade)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/centennial)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/crystal)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/delta)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/east-kent-golding)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/fuggle-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/glacier)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/golding-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/hallertau-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/liberty)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/mosaic)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/mt-hood)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/palisade)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/saaz-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/santiam)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/simcoe)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/spalt)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/sterling)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/strisselspalt)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/ultra)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/vanguard)) | ||
(is (spoon.spec/test-valid? ::hops/hop aroma/willamette))) | ||
(testing "Ensure hop group is valid" | ||
(is (every? #(spoon.spec/test-valid? ::hops/hop %) (vals aroma/aroma))) | ||
(is (every? keyword? (keys aroma/aroma))))) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
(ns common-beer-data.hops.bittering-test | ||
(:require [clojure.test :refer [deftest is testing]] | ||
[com.wallbrew.spoon.spec :as spoon.spec] | ||
[common-beer-data.hops.bittering :as bittering] | ||
[common-beer-format.hops :as hops])) | ||
|
||
|
||
(deftest validity-test | ||
(testing "Ensure static hop definitions are valid" | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/summit)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/chelan)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/cluster)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/eroica)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/tillicum)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/brewers-gold-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/nugget)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/bravo)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/magnum-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/apollo)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/ctz)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/super-galena)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/warrior)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/chinook)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/millennium)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/newport)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/galena)) | ||
(is (spoon.spec/test-valid? ::hops/hop bittering/bullion))) | ||
(testing "Ensure hop group is valid" | ||
(is (every? #(spoon.spec/test-valid? ::hops/hop %) (vals bittering/bittering))) | ||
(is (every? keyword? (keys bittering/bittering))))) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
(ns common-beer-data.hops.both-test | ||
(:require [clojure.test :refer [deftest is testing]] | ||
[com.wallbrew.spoon.spec :as spoon.spec] | ||
[common-beer-data.hops.both :as both] | ||
[common-beer-format.hops :as hops])) | ||
|
||
|
||
(deftest validity-test | ||
(testing "Ensure static hop definitions are valid" | ||
(is (spoon.spec/test-valid? ::hops/hop both/el-dorado)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/celeia)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/perle-us)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/northdown)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/horizon)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/columbus)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/northern-brewer)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/challenger)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/citra)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/tettnanger)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/galaxy)) | ||
(is (spoon.spec/test-valid? ::hops/hop both/topaz))) | ||
(testing "Ensure hop group is valid" | ||
(is (every? #(spoon.spec/test-valid? ::hops/hop %) (vals both/both))) | ||
(is (every? keyword? (keys both/both))))) |
This file contains 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