Sha256: f2501eb38229e7bde12ff11753b51055ee311ff100d07dc150d426f9c1ca0edb
Contents?: true
Size: 398 Bytes
Versions: 9
Compression:
Stored size: 398 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
9 entries across 9 versions & 1 rubygems