Skip to content

Commit

Permalink
fixed testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
schubi2 committed Jun 28, 2023
1 parent a9ea111 commit 9321c2c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/cfa/systemd_boot_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,12 @@
expect(subject.menue_timeout).to eq("10")
end
end

describe "#menue_timeout=" do
it "sets the menue_timeout value" do
expect { subject.menue_timeout = "15" }
.to change { subject.menue_timeout }.from("10").to("15")
end
end

end

0 comments on commit 9321c2c

Please sign in to comment.