Sha256: 625214a729cdb9ad7410e9c6d0a73996dc83a9da727bd3ca3500ba16877ea803
Contents?: true
Size: 485 Bytes
Versions: 32
Compression:
Stored size: 485 Bytes
Contents
require 'spec_helper' module Spec module Example class GrandParentExampleGroup < Spec::Example::ExampleGroup describe "Grandparent ExampleGroup" end class ParentExampleGroup < GrandParentExampleGroup describe "Parent ExampleGroup" it "should bar" do end end class ChildExampleGroup < ParentExampleGroup describe "Child ExampleGroup" it "should bam" do end end describe ChildExampleGroup do end end end
Version data entries
32 entries across 32 versions & 11 rubygems