Sha256: 50add5655292a78a50ba0eea716fe7ff9126d11620f3af07a27ab0bbfacc7aa8
Contents?: true
Size: 774 Bytes
Versions: 27
Compression:
Stored size: 774 Bytes
Contents
Feature: implicit receiver When should() is called in an example without an explicit receiver, it is invoked against the subject (explicit or implicit). Scenario: implicit subject Given a file named "example_spec.rb" with: """ describe Array do describe "when first created" do it { should be_empty } end end """ When I run `rspec example_spec.rb` Then the examples should all pass Scenario: explicit subject Given a file named "example_spec.rb" with: """ describe Array do describe "with 3 items" do subject { [1,2,3] } it { should_not be_empty } end end """ When I run `rspec example_spec.rb` Then the examples should all pass
Version data entries
27 entries across 25 versions & 4 rubygems