Skip to content

Commit 46deab0

Browse files
committed
fix: Added Skip to the Fact attribute
1 parent d46e0c8 commit 46deab0

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

exercises/practice/markdown/MarkdownTests.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,87 +10,87 @@ public void Parses_normal_text_as_a_paragraph()
1010
Assert.Equal(expected, Markdown.Parse(markdown));
1111
}
1212

13-
[Fact]
13+
[Fact(Skip = "Remove this Skip property to run this test")]
1414
public void Parsing_italics()
1515
{
1616
var markdown = "_This will be italic_";
1717
var expected = "<p><em>This will be italic</em></p>";
1818
Assert.Equal(expected, Markdown.Parse(markdown));
1919
}
2020

21-
[Fact]
21+
[Fact(Skip = "Remove this Skip property to run this test")]
2222
public void Parsing_bold_text()
2323
{
2424
var markdown = "__This will be bold__";
2525
var expected = "<p><strong>This will be bold</strong></p>";
2626
Assert.Equal(expected, Markdown.Parse(markdown));
2727
}
2828

29-
[Fact]
29+
[Fact(Skip = "Remove this Skip property to run this test")]
3030
public void Mixed_normal_italics_and_bold_text()
3131
{
3232
var markdown = "This will _be_ __mixed__";
3333
var expected = "<p>This will <em>be</em> <strong>mixed</strong></p>";
3434
Assert.Equal(expected, Markdown.Parse(markdown));
3535
}
3636

37-
[Fact]
37+
[Fact(Skip = "Remove this Skip property to run this test")]
3838
public void With_h1_header_level()
3939
{
4040
var markdown = "# This will be an h1";
4141
var expected = "<h1>This will be an h1</h1>";
4242
Assert.Equal(expected, Markdown.Parse(markdown));
4343
}
4444

45-
[Fact]
45+
[Fact(Skip = "Remove this Skip property to run this test")]
4646
public void With_h2_header_level()
4747
{
4848
var markdown = "## This will be an h2";
4949
var expected = "<h2>This will be an h2</h2>";
5050
Assert.Equal(expected, Markdown.Parse(markdown));
5151
}
5252

53-
[Fact]
53+
[Fact(Skip = "Remove this Skip property to run this test")]
5454
public void With_h3_header_level()
5555
{
5656
var markdown = "### This will be an h3";
5757
var expected = "<h3>This will be an h3</h3>";
5858
Assert.Equal(expected, Markdown.Parse(markdown));
5959
}
6060

61-
[Fact]
61+
[Fact(Skip = "Remove this Skip property to run this test")]
6262
public void With_h4_header_level()
6363
{
6464
var markdown = "#### This will be an h4";
6565
var expected = "<h4>This will be an h4</h4>";
6666
Assert.Equal(expected, Markdown.Parse(markdown));
6767
}
6868

69-
[Fact]
69+
[Fact(Skip = "Remove this Skip property to run this test")]
7070
public void With_h5_header_level()
7171
{
7272
var markdown = "##### This will be an h5";
7373
var expected = "<h5>This will be an h5</h5>";
7474
Assert.Equal(expected, Markdown.Parse(markdown));
7575
}
7676

77-
[Fact]
77+
[Fact(Skip = "Remove this Skip property to run this test")]
7878
public void With_h6_header_level()
7979
{
8080
var markdown = "###### This will be an h6";
8181
var expected = "<h6>This will be an h6</h6>";
8282
Assert.Equal(expected, Markdown.Parse(markdown));
8383
}
8484

85-
[Fact]
85+
[Fact(Skip = "Remove this Skip property to run this test")]
8686
public void H7_header_level_is_a_paragraph()
8787
{
8888
var markdown = "####### This will not be an h7";
8989
var expected = "<p>####### This will not be an h7</p>";
9090
Assert.Equal(expected, Markdown.Parse(markdown));
9191
}
9292

93-
[Fact]
93+
[Fact(Skip = "Remove this Skip property to run this test")]
9494
public void Unordered_lists()
9595
{
9696
var markdown =
@@ -100,7 +100,7 @@ public void Unordered_lists()
100100
Assert.Equal(expected, Markdown.Parse(markdown));
101101
}
102102

103-
[Fact]
103+
[Fact(Skip = "Remove this Skip property to run this test")]
104104
public void With_a_little_bit_of_everything()
105105
{
106106
var markdown =
@@ -111,15 +111,15 @@ public void With_a_little_bit_of_everything()
111111
Assert.Equal(expected, Markdown.Parse(markdown));
112112
}
113113

114-
[Fact]
114+
[Fact(Skip = "Remove this Skip property to run this test")]
115115
public void With_markdown_symbols_in_the_header_text_that_should_not_be_interpreted()
116116
{
117117
var markdown = "# This is a header with # and * in the text";
118118
var expected = "<h1>This is a header with # and * in the text</h1>";
119119
Assert.Equal(expected, Markdown.Parse(markdown));
120120
}
121121

122-
[Fact]
122+
[Fact(Skip = "Remove this Skip property to run this test")]
123123
public void With_markdown_symbols_in_the_list_item_text_that_should_not_be_interpreted()
124124
{
125125
var markdown =
@@ -129,15 +129,15 @@ public void With_markdown_symbols_in_the_list_item_text_that_should_not_be_inter
129129
Assert.Equal(expected, Markdown.Parse(markdown));
130130
}
131131

132-
[Fact]
132+
[Fact(Skip = "Remove this Skip property to run this test")]
133133
public void With_markdown_symbols_in_the_paragraph_text_that_should_not_be_interpreted()
134134
{
135135
var markdown = "This is a paragraph with # and * in the text";
136136
var expected = "<p>This is a paragraph with # and * in the text</p>";
137137
Assert.Equal(expected, Markdown.Parse(markdown));
138138
}
139139

140-
[Fact]
140+
[Fact(Skip = "Remove this Skip property to run this test")]
141141
public void Unordered_lists_close_properly_with_preceding_and_following_lines()
142142
{
143143
var markdown =

0 commit comments

Comments
 (0)