We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4536375 commit 7e93033Copy full SHA for 7e93033
fixtures/a_condition.rb
@@ -33,7 +33,7 @@
33
condition.wait
34
end
35
36
- expect(condition.empty?).not.to be(:empty?)
+ expect(condition).not.to be(:empty?)
37
38
task.stop
39
test/async/children.rb
@@ -13,7 +13,7 @@
13
it "should be empty" do
14
expect(children).to be(:empty?)
15
expect(children).to be(:nil?)
16
- expect(children).not.to be(:transients)
+ expect(children).not.to be(:transients?)
17
18
19
test/async/list.rb
@@ -25,6 +25,7 @@ def initialize(value)
25
list.append(Item.new(3))
26
27
expect(list.each.map(&:value)).to be == [1, 2, 3]
28
+ expect(list.to_s).to be =~ /size=3/
29
30
31
it "can't append the same item twice" do
0 commit comments