Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
remove cruft from test
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed May 13, 2014
1 parent 5e7857e commit f5b715d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/ServiceStack.Text.Tests/CsvSerializerConfigTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public void Does_use_CsvConfig()
};

var csv = dtos.ToCsv();
csv.Print();
Assert.That(csv, Is.EqualTo("Id|Name\n\n1|Value\n\n2|`Value|Escaped`\n\n"));

var maps = new List<Dictionary<string, object>>()
Expand All @@ -34,21 +33,11 @@ public void Does_use_CsvConfig()
};

csv = maps.ToCsv();
csv.Print();
Assert.That(csv, Is.EqualTo("Id|Name\n\n1|Value\n\n2|`Value|Escaped`\n\n"));

CsvConfig.ItemSeperatorString = JsWriter.ItemSeperatorString;
CsvConfig.ItemDelimiterString = JsWriter.QuoteString;
CsvConfig.RowSeparatorString = Environment.NewLine;
}

[Test]
public void Does_use_CsvConfig_for_Dictionary_object()
{
CsvConfig.ItemSeperatorString = "|";
CsvConfig.ItemDelimiterString = "`";
CsvConfig.RowSeparatorString = "\n\n";

}
}
}

0 comments on commit f5b715d

Please sign in to comment.