Skip to content

Commit

Permalink
Implement basic size test
Browse files Browse the repository at this point in the history
  • Loading branch information
acook committed Oct 11, 2023
1 parent 8a3b010 commit 2d5fbb6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spec/frame_size_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
f << "bar\nbaz"
end

xit "occupies the size specified" do
it "occupies the size specified" do
expected = "foo \nbar \nbaz \n \n "
f.size = Tuple 5, 5
actual = f.to_s
expect(actual).to eq "???"
expect(actual).to eq expected
end

describe "#resize" do
Expand Down

0 comments on commit 2d5fbb6

Please sign in to comment.