@@ -116,8 +116,8 @@ public void ShouldNotDeleteModelWhenNotSet()
116
116
[ Fact ]
117
117
public void ShouldNotUpdateUpdatedDateWhenCheckboxSet ( )
118
118
{
119
- var somewhen = new DateTime ( 1991 , 5 , 17 ) ;
120
- var originalBlogPost = new BlogPostBuilder ( ) . WithUpdatedDate ( somewhen ) . Build ( ) ;
119
+ var someWhen = new DateTime ( 1991 , 5 , 17 ) ;
120
+ var originalBlogPost = new BlogPostBuilder ( ) . WithUpdatedDate ( someWhen ) . Build ( ) ;
121
121
BlogPost blogPostFromComponent = null ;
122
122
var cut = RenderComponent < CreateNewBlogPost > (
123
123
p =>
@@ -132,7 +132,7 @@ public void ShouldNotUpdateUpdatedDateWhenCheckboxSet()
132
132
cut . Find ( "#updatedate" ) . Change ( false ) ;
133
133
cut . Find ( "form" ) . Submit ( ) ;
134
134
135
- blogPostFromComponent . UpdatedDate . Should ( ) . Be ( somewhen ) ;
135
+ blogPostFromComponent . UpdatedDate . Should ( ) . Be ( someWhen ) ;
136
136
}
137
137
138
138
[ Fact ]
@@ -171,7 +171,7 @@ public void ShouldAcceptInputWithoutLosingFocusOrEnter()
171
171
blogPost . Tags . Select ( t => t . Content ) . Should ( ) . Contain ( new [ ] { "Tag1" , "Tag2" , "Tag3" } ) ;
172
172
}
173
173
174
- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
174
+ [ Fact ]
175
175
public void ShouldStopExternalNavigationWhenDirty ( )
176
176
{
177
177
var cut = RenderComponent < CreateNewBlogPost > ( ) ;
@@ -181,7 +181,7 @@ public void ShouldStopExternalNavigationWhenDirty()
181
181
cut . FindComponent < NavigationLock > ( ) . Instance . ConfirmExternalNavigation . Should ( ) . BeTrue ( ) ;
182
182
}
183
183
184
- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
184
+ [ Fact ]
185
185
public void ShouldStopInternalNavigationWhenDirty ( )
186
186
{
187
187
var cut = RenderComponent < CreateNewBlogPost > ( ) ;
@@ -193,7 +193,7 @@ public void ShouldStopInternalNavigationWhenDirty()
193
193
fakeNavigationManager . History . Count . Should ( ) . Be ( 1 ) ;
194
194
}
195
195
196
- [ Fact ( Skip = "Need bUnit > 1.9.8" ) ]
196
+ [ Fact ]
197
197
public void ShouldNotPreventWhenToastIsClicked ( )
198
198
{
199
199
var toastMock = new Mock < IToastService > ( ) ;
0 commit comments