Skip to content

Commit 601a99d

Browse files
committed
added a test case for PR 118
1 parent 7c284d5 commit 601a99d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ output
1010
build
1111

1212
*.csproj.user
13-
13+
*ncrunch*
1414
*.resharper.user
15-
15+
src/packages
1616
*.resharper
1717

1818
*.suo

src/Examples.FirstProject/Examples.FirstProject.csproj.user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ProjectView>ShowAllFiles</ProjectView>
4+
<ProjectView>ProjectFiles</ProjectView>
55
<PublishUrlHistory />
66
<InstallUrlHistory />
77
<SupportUrlHistory />

src/FluentNHibernate.Testing/Cfg/Db/MsSqlCeConfigurationTester.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,12 @@ public void ShouldBeAbleToSpecifyConnectionStringDirectly()
2121
.ConnectionString("conn")
2222
.ToProperties().ShouldContain("connection.connection_string", "conn");
2323
}
24+
25+
[Test]
26+
public void MsSqlCe_should_include_40dialect()
27+
{
28+
MsSqlCeConfiguration.MsSqlCe40.ToProperties()["dialect"].ShouldEqual("NHibernate.Dialect.MsSqlCe40Dialect, " +
29+
typeof(ISession).Assembly.FullName);
30+
}
2431
}
2532
}

0 commit comments

Comments
 (0)