
Co-authored-by: Sam Ford <1584702+samford@users.noreply.github.com> Co-authored-by: Thierry Moisan <thierry.moisan@gmail.com> Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com> Co-authored-by: Maxim Belkin <maxim.belkin@gmail.com> Co-authored-by: Issy Long <me@issyl0.co.uk> Co-authored-by: Mike McQuaid <mike@mikemcquaid.com> Co-authored-by: Seeker <meaningseeking@protonmail.com>
21 lines
546 B
Ruby
21 lines
546 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "livecheck/strategy/npm"
|
|
|
|
describe Homebrew::Livecheck::Strategy::Npm do
|
|
subject(:npm) { described_class }
|
|
|
|
let(:npm_url) { "https://registry.npmjs.org/abc/-/def-1.2.3.tgz" }
|
|
let(:non_npm_url) { "https://brew.sh/test" }
|
|
|
|
describe "::match?" do
|
|
it "returns true if the argument provided is an npm URL" do
|
|
expect(npm.match?(npm_url)).to be true
|
|
end
|
|
|
|
it "returns false if the argument provided is not an npm URL" do
|
|
expect(npm.match?(non_npm_url)).to be false
|
|
end
|
|
end
|
|
end
|