Commit 60aeb56
Changed files (2)
product
application
data
application.tests
product/application/data/SqlFile.cs
@@ -16,6 +16,11 @@ namespace simple.migrations.Data
throw new NotImplementedException();
}
+ public virtual bool is_greater_than(int version)
+ {
+ throw new NotImplementedException();
+ }
+
static public implicit operator SqlFile(string file_path)
{
return new SqlFile {path = file_path.ToLower()};
@@ -45,10 +50,5 @@ namespace simple.migrations.Data
{
return path;
}
-
- public virtual bool is_greater_than(int version)
- {
- throw new NotImplementedException();
- }
}
}
\ No newline at end of file
product/application.tests/io/WindowsFileSystemSpecs.cs
@@ -5,6 +5,7 @@ using System.Linq;
using developwithpassion.bdd.contexts;
using developwithpassion.bdd.harnesses.mbunit;
using developwithpassion.bdddoc.core;
+using MbUnit.Framework;
using simple.migrations.Data;
using simple.migrations.io;
@@ -15,6 +16,7 @@ namespace tests.io
public abstract class concern : observations_for_a_sut_with_a_contract<FileSystem, WindowsFileSystem> {}
[Concern(typeof (WindowsFileSystem))]
+ [FixtureCategory("SLOW")]
public class when_retrieving_all_the_sql_migrations_scripts_from_a_directory : concern
{
context c = () =>