File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
- Shared test configuration and fixtures for Langbase SDK tests.
2
+ Shared test config and fixtures for Langbase SDK tests.
3
3
"""
4
4
5
- import json
6
-
7
5
import pytest
8
- import responses
9
6
10
7
11
8
@pytest .fixture
@@ -34,14 +31,14 @@ def mock_responses():
34
31
return {
35
32
# Pipes responses
36
33
"pipe_list" : [
37
- {"name" : "test-pipe" , "description" : "Test pipe" , "status" : "deployed " },
38
- {"name" : "another-pipe" , "description" : "Another pipe" , "status" : "draft " },
34
+ {"name" : "test-pipe" , "description" : "Test pipe" , "status" : "public " },
35
+ {"name" : "another-pipe" , "description" : "Another pipe" , "status" : "private " },
39
36
],
40
37
"pipe_create" : {
41
38
"name" : "new-pipe" ,
42
39
"api_key" : "pipe-api-key" ,
43
40
"description" : "A test pipe" ,
44
- "status" : "draft " ,
41
+ "status" : "public " ,
45
42
},
46
43
"pipe_run" : {
47
44
"completion" : "Hello, world!" ,
You can’t perform that action at this time.
0 commit comments