more tests

This commit is contained in:
Sam 2015-07-20 17:06:00 +10:00
parent ecf50a741c
commit 4c92f05d8d
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ describe PrettyText do
it 'allows table html' do
SiteSetting.allow_html_tables = true
PrettyText.reset_context
table = "<table class='fa-spin'><thead><tr>\n<th>test</th></tr></thead><tbody><tr><td>a</td></tr></tbody></table>"
table = "<table class='fa-spin'><thead><tr>\n<th class='fa-spin'>test</th></tr></thead><tbody><tr><td>a</td></tr></tbody></table>"
match = "<table class=\"md-table\"><thead><tr> <th>test</th> </tr></thead><tbody><tr><td>a</td></tr></tbody></table>"
expect(PrettyText.cook(table)).to match_html(match)