Sha256: 0a6e46cb384cafc32b8a53f43a9b3fdcbc49bec7fa5d409c5b0299708758f353
Contents?: true
Size: 849 Bytes
Versions: 32
Compression:
Stored size: 849 Bytes
Contents
Feature: Nested example groups As an RSpec user I want to nest examples groups So that I can better organize my examples Scenario Outline: Nested example groups Given a file named "nested_example_groups.rb" with: """ require 'spec/autorun' describe "Some Object" do describe "with some more context" do it "should do this" do true.should be_true end end describe "with some other context" do it "should do that" do false.should be_false end end end """ When I run "<Command> nested_example_groups.rb -fs" Then the stdout should include /Some Object with some more context/ And the stdout should include /Some Object with some other context/ Scenarios: Run with ruby and spec | Command | | ruby | | spec |
Version data entries
32 entries across 32 versions & 11 rubygems