File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,36 @@ package _go
17
17
import "testing"
18
18
19
19
func TestIssues (t * testing.T ) {
20
- t .Skip ("need to implement AST conversions" )
21
20
RunScripts (t , []ScriptTest {
22
21
{
23
22
Name : "Issue #25" ,
24
23
SetUpScript : []string {
25
24
"create table tbl (pk int);" ,
26
25
"insert into tbl values (1);" ,
27
- `call dolt_add(".");` ,
28
- `call dolt_commit("-m", "look ma");` ,
29
26
},
30
27
Assertions : []ScriptTestAssertion {
31
28
{
32
- Query : `call dolt_branch("br1");` ,
29
+ Query : `call dolt_add(".");` ,
30
+ ExpectedErr : true ,
31
+ },
32
+ {
33
+ Query : `call dolt_add('.');` ,
34
+ SkipResultsCheck : true ,
35
+ },
36
+ {
37
+ Query : `call dolt_commit("-m", "look ma");` ,
38
+ ExpectedErr : true ,
39
+ },
40
+ {
41
+ Query : `call dolt_commit('-m', 'look ma');` ,
42
+ SkipResultsCheck : true ,
43
+ },
44
+ {
45
+ Query : `call dolt_branch("br1");` ,
46
+ ExpectedErr : true ,
47
+ },
48
+ {
49
+ Query : `call dolt_branch('br1');` ,
33
50
SkipResultsCheck : true ,
34
51
},
35
52
},
You can’t perform that action at this time.
0 commit comments