brew/Library/Homebrew/test/macos_runner_spec_spec.rb

20 lines
526 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "macos_runner_spec"
describe MacOSRunnerSpec do
2023-04-25 17:05:05 +08:00
let(:spec) { described_class.new(name: "macOS 11-arm64", runner: "11-arm64", timeout: 90, cleanup: true) }
it "has immutable attributes" do
2023-04-25 17:05:05 +08:00
[: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