We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9a916 commit 44e8f95Copy full SHA for 44e8f95
enginetest/memory_engine_test.go
@@ -197,20 +197,12 @@ func TestSingleQueryPrepared(t *testing.T) {
197
198
// Convenience test for debugging a single query. Unskip and set to the desired query.
199
func TestSingleScript(t *testing.T) {
200
- //t.Skip()
+ t.Skip()
201
var scripts = []queries.ScriptTest{
202
{
203
- Name: "test script",
204
- SetUpScript: []string{
205
- "create table t (i tinytext unique);",
206
- "insert into t values ('hello');",
207
- },
208
- Assertions: []queries.ScriptTestAssertion{
209
- {
210
- Query: "insert into t values ('hello');",
211
- ExpectedErrStr: "asdf",
212
213
+ Name: "test script",
+ SetUpScript: []string{},
+ Assertions: []queries.ScriptTestAssertion{},
214
},
215
}
216
0 commit comments