File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 42
42
# shouldn't break other OSes
43
43
MACOSX_DEPLOYMENT_TARGET : ' 10.12'
44
44
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
+
45
52
- name : LSP tests
46
53
run : dub test :lsp
47
54
timeout-minutes : 10
Original file line number Diff line number Diff line change 1
1
{
2
2
"fileVersion" : 1 ,
3
3
"versions" : {
4
+ "dcd" : " 0.16.0-beta.2" ,
5
+ "msgpack-d" : " 1.0.5"
4
6
}
5
7
}
Original file line number Diff line number Diff line change @@ -690,8 +690,8 @@ private string unescapeTabs(string val)
690
690
691
691
unittest
692
692
{
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);
697
697
}
You can’t perform that action at this time.
0 commit comments