Sha256: 7ddd97fd8fba0f9fcdf709a1f2e14a73f6a6035e868a2825bbe20ccde9cb2456
Contents?: true
Size: 517 Bytes
Versions: 94
Compression:
Stored size: 517 Bytes
Contents
require File.dirname(__FILE__) + '/../../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
94 entries across 94 versions & 12 rubygems