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

Version Path
albacore-0.3.6 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-1.0.0.rc.2 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-1.0.0.rc.1 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.5 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.4 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.3 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.2 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.1 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.3.0 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs