mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
533 B
Ruby
20 lines
533 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "macos_runner_spec"
|
|
|
|
RSpec.describe MacOSRunnerSpec do
|
|
let(:spec) { described_class.new(name: "macOS 11-arm64", runner: "11-arm64", timeout: 90, cleanup: true) }
|
|
|
|
it "has immutable attributes" do
|
|
[:name, :runner, :timeout, :cleanup].each do |attribute|
|
|
expect(spec.respond_to?(:"#{attribute}=")).to be(false)
|
|
end
|
|
end
|
|
|
|
describe "#to_h" do
|
|
it "returns an object that responds to `#to_json`" do
|
|
expect(spec.to_h.respond_to?(:to_json)).to be(true)
|
|
end
|
|
end
|
|
end
|