File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 4242 # shouldn't break other OSes
4343 MACOSX_DEPLOYMENT_TARGET : ' 10.12'
4444
45+ - name : DCD communication library tests
46+ run : dub test :dcd
47+ timeout-minutes : 5
48+ env :
49+ # shouldn't break other OSes
50+ MACOSX_DEPLOYMENT_TARGET : ' 10.12'
51+
4552 - name : LSP tests
4653 run : dub test :lsp
4754 timeout-minutes : 10
Original file line number Diff line number Diff line change 11{
22 "fileVersion" : 1 ,
33 "versions" : {
4+ "dcd" : " 0.16.0-beta.2" ,
5+ "msgpack-d" : " 1.0.5"
46 }
57}
Original file line number Diff line number Diff line change @@ -690,8 +690,8 @@ private string unescapeTabs(string val)
690690
691691unittest
692692{
693- shouldEqual (" hello world" , " hello world" .unescapeTabs);
694- shouldEqual (" hello\n world" , " hello\\ nworld" .unescapeTabs);
695- shouldEqual (" hello\\ nworld" , " hello\\\\ nworld" .unescapeTabs);
696- shouldEqual (" hello\\\n world" , " hello\\\\\\ nworld" .unescapeTabs);
693+ assert (" hello world" == " hello world" .unescapeTabs);
694+ assert (" hello\n world" == " hello\\ nworld" .unescapeTabs);
695+ assert (" hello\\ nworld" == " hello\\\\ nworld" .unescapeTabs);
696+ assert (" hello\\\n world" == " hello\\\\\\ nworld" .unescapeTabs);
697697}
You can’t perform that action at this time.
0 commit comments