Sha256: cafb5e4f69825c4d46a46eadba4f6f3e03325a3be287633d14982c221279ec16
Contents?: true
Size: 416 Bytes
Versions: 10
Compression:
Stored size: 416 Bytes
Contents
using Machine.Specifications; namespace TestSolution.MSpecTests { [Subject("some spec test")] public class SomeSpecTest { private static Class1 someclass; private static string foo; private Establish context = () => { someclass = new Class1(); }; private Because of = () => { foo = someclass.Foo(); }; private It should_be_the_right_string = () => foo.ShouldEqual("bar"); } }
Version data entries
10 entries across 10 versions & 1 rubygems