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

Version Path
albacore-0.2.0.preview1 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.5 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.4 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.3 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.2 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.1 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.1.0 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.0.9 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.0.8 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
albacore-0.0.7 spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs