Skip to content

Commit bbc0b2d

Browse files
committed
.
1 parent 44bbb92 commit bbc0b2d

5 files changed

+13
-13
lines changed

docs/build-server.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ if (BuildServerDetector.Detected)
100100
});
101101
}
102102
```
103-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L45-L59' title='Snippet source file'>snippet source</a> | <a href='#snippet-DerivePathInfoAppVeyor' title='Start of snippet'>anchor</a></sup>
103+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L40-L54' title='Snippet source file'>snippet source</a> | <a href='#snippet-DerivePathInfoAppVeyor' title='Start of snippet'>anchor</a></sup>
104104
<!-- endSnippet -->
105105

106106

docs/clipboard.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The clipboard behavior can be enabled using the following:
2525
```cs
2626
ClipboardAccept.Enable();
2727
```
28-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L29-L31' title='Snippet source file'>snippet source</a> | <a href='#snippet-EnableClipboard' title='Start of snippet'>anchor</a></sup>
28+
<sup><a href='/src/Verify.ClipboardAccept.Tests/ClipboardEnabledTests.cs#L12-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-EnableClipboard' title='Start of snippet'>anchor</a></sup>
2929
<!-- endSnippet -->
3030

3131

docs/serializer-settings.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Extra Json.NET settings can be made:
221221
VerifierSettings.AddExtraSettings(
222222
_ => _.TypeNameHandling = TypeNameHandling.All);
223223
```
224-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L116-L121' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExtraSettingsGlobal' title='Start of snippet'>anchor</a></sup>
224+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L111-L116' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExtraSettingsGlobal' title='Start of snippet'>anchor</a></sup>
225225
<!-- endSnippet -->
226226

227227

@@ -234,7 +234,7 @@ var settings = new VerifySettings();
234234
settings.AddExtraSettings(
235235
_ => _.TypeNameHandling = TypeNameHandling.All);
236236
```
237-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L123-L129' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExtraSettingsInstance' title='Start of snippet'>anchor</a></sup>
237+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L118-L124' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExtraSettingsInstance' title='Start of snippet'>anchor</a></sup>
238238
<!-- endSnippet -->
239239

240240

@@ -252,7 +252,7 @@ class CompanyConverter :
252252
writer.WriteMember(company, company.Name, "Name");
253253
}
254254
```
255-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L139-L148' title='Snippet source file'>snippet source</a> | <a href='#snippet-CompanyConverter' title='Start of snippet'>anchor</a></sup>
255+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L134-L143' title='Snippet source file'>snippet source</a> | <a href='#snippet-CompanyConverter' title='Start of snippet'>anchor</a></sup>
256256
<!-- endSnippet -->
257257

258258
<!-- snippet: JsonConverter -->
@@ -261,7 +261,7 @@ class CompanyConverter :
261261
VerifierSettings.AddExtraSettings(
262262
_ => _.Converters.Add(new CompanyConverter()));
263263
```
264-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L133-L136' title='Snippet source file'>snippet source</a> | <a href='#snippet-JsonConverter' title='Start of snippet'>anchor</a></sup>
264+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L128-L131' title='Snippet source file'>snippet source</a> | <a href='#snippet-JsonConverter' title='Start of snippet'>anchor</a></sup>
265265
<!-- endSnippet -->
266266

267267

@@ -1432,7 +1432,7 @@ Extra types can be added to this mapping:
14321432
VerifierSettings.TreatAsString<ClassWithToString>(
14331433
(target, settings) => target.Property);
14341434
```
1435-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L34-L37' title='Snippet source file'>snippet source</a> | <a href='#snippet-TreatAsString' title='Start of snippet'>anchor</a></sup>
1435+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L29-L32' title='Snippet source file'>snippet source</a> | <a href='#snippet-TreatAsString' title='Start of snippet'>anchor</a></sup>
14361436
<!-- endSnippet -->
14371437

14381438

docs/verify-options.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This can be done using `AutoVerify()`:
2727
var settings = new VerifySettings();
2828
settings.AutoVerify();
2929
```
30-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L64-L69' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerify' title='Start of snippet'>anchor</a></sup>
30+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L59-L64' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerify' title='Start of snippet'>anchor</a></sup>
3131
<!-- endSnippet -->
3232

3333
Or with a delegate:
@@ -40,7 +40,7 @@ settings.AutoVerify(
4040
verifiedFile =>
4141
Path.GetExtension(verifiedFile) == "png");
4242
```
43-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L74-L81' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyDelegate' title='Start of snippet'>anchor</a></sup>
43+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L69-L76' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyDelegate' title='Start of snippet'>anchor</a></sup>
4444
<!-- endSnippet -->
4545

4646

@@ -54,7 +54,7 @@ public Task AutoVerifyFluent() =>
5454
Verify("Value")
5555
.AutoVerify();
5656
```
57-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L84-L91' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyFluent' title='Start of snippet'>anchor</a></sup>
57+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L79-L86' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyFluent' title='Start of snippet'>anchor</a></sup>
5858
<!-- endSnippet -->
5959

6060
Or with a delegate:
@@ -69,7 +69,7 @@ public Task AutoVerifyFluentDelegate() =>
6969
verifiedFile =>
7070
Path.GetExtension(verifiedFile) == "png");
7171
```
72-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L93-L102' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyFluentDelegate' title='Start of snippet'>anchor</a></sup>
72+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L88-L97' title='Snippet source file'>snippet source</a> | <a href='#snippet-AutoVerifyFluentDelegate' title='Start of snippet'>anchor</a></sup>
7373
<!-- endSnippet -->
7474

7575

@@ -234,5 +234,5 @@ To disable diff launching:
234234
var settings = new VerifySettings();
235235
settings.DisableDiff();
236236
```
237-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L106-L111' title='Snippet source file'>snippet source</a> | <a href='#snippet-DisableDiff' title='Start of snippet'>anchor</a></sup>
237+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L101-L106' title='Snippet source file'>snippet source</a> | <a href='#snippet-DisableDiff' title='Start of snippet'>anchor</a></sup>
238238
<!-- endSnippet -->

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ await Verify(
520520
Bars = await repo.GetBars(id)
521521
});
522522
```
523-
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L157-L166' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyFuncOfTaskOfT' title='Start of snippet'>anchor</a></sup>
523+
<sup><a href='/src/Verify.Tests/Snippets/Snippets.cs#L152-L161' title='Snippet source file'>snippet source</a> | <a href='#snippet-VerifyFuncOfTaskOfT' title='Start of snippet'>anchor</a></sup>
524524
<!-- endSnippet -->
525525

526526

0 commit comments

Comments
 (0)