Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the asterisk mean in rspec output

Tags:

ruby

rspec

What does the asterisk mean in rspec output?

ubuntu@ip-172-31-13-166:~/bridge_interfac$ bundle exec rspec spec
..................................*.*F.........................*.......*.................*...........................^C
Exiting... Interrupt again to exit immediately.
.
like image 517
SamLosAngeles Avatar asked Oct 31 '25 03:10

SamLosAngeles


1 Answers

This mean test pending.

RSpec offers a number of different ways to indicate that an example is disabled pending some action.

In this test have pending method:

describe "an example" do
  it "is a pending some action"
end
like image 78
Philidor Avatar answered Nov 03 '25 00:11

Philidor



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!