Skip to content

Commit f88179f

Browse files
committed
Added headers
1 parent b06c702 commit f88179f

File tree

5 files changed

+42
-11
lines changed

5 files changed

+42
-11
lines changed

test/tck/environment.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
failing_features = {}
2424

2525

26-
# def before_all(context):
27-
# context.config.setup_logging()
28-
29-
3026
def before_feature(context, feature):
3127
# Workaround. Behave has a different way of tagging than cucumber
3228
for scenario in feature.scenarios:
@@ -66,6 +62,4 @@ def after_scenario(context, scenario):
6662
pass
6763
for runner in tck_util.runners:
6864
runner.close()
69-
# if scenario.status != "passed":
70-
# raise Exception("%s did not pass" %scenario)
7165

test/tck/steps/bolt_compability_steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
from test.tck import tck_util
2828
from test.tck.resultparser import parse_values
29-
from test.tck.tck_util import to_unicode, Type, send_string, send_parameters, string_to_type
29+
from test.tck.tck_util import to_unicode, Type, string_to_type
3030

3131
from neo4j.v1 import compat
3232
use_step_matcher("re")

test/tck/steps/cypher_compability_steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1818
# See the License for the specific language governing permissions and
1919
# limitations under the License.
20-
import time
20+
2121
from behave import *
2222

2323
from test.tck import tck_util

test/tck/steps/driver_equality_steps.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
1-
from collections import deque
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
3+
4+
# Copyright (c) 2002-2016 "Neo Technology,"
5+
# Network Engine for Objects in Lund AB [http://neotechnology.com]
6+
#
7+
# This file is part of Neo4j.
8+
#
9+
# Licensed under the Apache License, Version 2.0 (the "License");
10+
# you may not use this file except in compliance with the License.
11+
# You may obtain a copy of the License at
12+
#
13+
# http://www.apache.org/licenses/LICENSE-2.0
14+
#
15+
# Unless required by applicable law or agreed to in writing, software
16+
# distributed under the License is distributed on an "AS IS" BASIS,
17+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
# See the License for the specific language governing permissions and
19+
# limitations under the License.
220

321
from behave import *
422

5-
from neo4j.v1 import Path, Relationship
623
from test.tck.tck_util import send_string
724

825
use_step_matcher("re")

test/tck/steps/driver_result_api_steps.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
3+
4+
# Copyright (c) 2002-2016 "Neo Technology,"
5+
# Network Engine for Objects in Lund AB [http://neotechnology.com]
6+
#
7+
# This file is part of Neo4j.
8+
#
9+
# Licensed under the Apache License, Version 2.0 (the "License");
10+
# you may not use this file except in compliance with the License.
11+
# You may obtain a copy of the License at
12+
#
13+
# http://www.apache.org/licenses/LICENSE-2.0
14+
#
15+
# Unless required by applicable law or agreed to in writing, software
16+
# distributed under the License is distributed on an "AS IS" BASIS,
17+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
# See the License for the specific language governing permissions and
19+
# limitations under the License.
20+
121
from behave import *
222

3-
from neo4j.v1 import ResultSummary, STATEMENT_TYPE_READ_ONLY, STATEMENT_TYPE_READ_WRITE, STATEMENT_TYPE_WRITE_ONLY, \
23+
from neo4j.v1 import STATEMENT_TYPE_READ_ONLY, STATEMENT_TYPE_READ_WRITE, STATEMENT_TYPE_WRITE_ONLY, \
424
STATEMENT_TYPE_SCHEMA_WRITE
525

626
from test.tck.resultparser import parse_values

0 commit comments

Comments
 (0)