Skip to content

Commit

Permalink
Merge pull request #193010 from Homebrew/jikken
Browse files Browse the repository at this point in the history
jikken 0.8.0 (new formula)
  • Loading branch information
BrewTestBot authored Oct 7, 2024
2 parents b4792ca + 6a29391 commit 8e99751
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1314,6 +1314,7 @@ jetty
jetty-runner
jfrog-cli
jhipster
jikken
jimtcl
jj
jlog
Expand Down
36 changes: 36 additions & 0 deletions Formula/j/jikken.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
class Jikken < Formula
desc "Powerful, source control friendly REST API testing toolkit"
homepage "https://jikken.io/"
url "https://github.com/jikkenio/jikken/archive/refs/tags/v0.8.0.tar.gz"
sha256 "d06d1bce4715c8d64d6f4c59bd12f0e7f18b4f486ad04eac9ddc263f7fc986d0"
license "MIT"
head "https://github.com/jikkenio/jikken.git", branch: "main"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "7053c50fa712a296f1eee21d4d42a61d67673793a63a086d3157c0b7288fc495"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "2c23b8ff7ca5ddb70cd64ae101271e9579d65ec0f58f870beed1f6ab031b80a2"
sha256 cellar: :any_skip_relocation, arm64_ventura: "3b12de9d9fedd822f1a83f9f53292ed4ae06062ed516053020788001bb2ff83a"
sha256 cellar: :any_skip_relocation, sonoma: "f498233653cc37842fbf468a1ea331354c8564ef2627df427f6ab863664b23b3"
sha256 cellar: :any_skip_relocation, ventura: "1ec50d09c660996034c199860024ee493942ffff0c9f1204509ae5da102a3731"
sha256 cellar: :any_skip_relocation, x86_64_linux: "b1426535008b954a0bf74e782b283af27a28eca365dedb5b92d0acf11d73b5e4"
end

depends_on "pkg-config" => :build
depends_on "rust" => :build

on_linux do
depends_on "openssl@3"
end

def install
system "cargo", "install", *std_cargo_args
end

test do
output = shell_output("#{bin}/jk new test")
assert_match "Successfully created test (`test.jkt`).", output
assert_match "status: 200", (testpath/"test.jkt").read

assert_match version.to_s, shell_output("#{bin}/jk --version")
end
end

0 comments on commit 8e99751

Please sign in to comment.