What does the asterisk mean in rspec output
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.
.
+3
SamLosAngeles
source
to share
1 answer
This is an average test pending
.
RSpec offers several different ways to indicate that an example is disabled pending some action.
This test has a pending method:
describe "an example" do
it "is a pending some action"
end
+6
Green
source
to share